1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_divmodsi4
9 extern COMPILER_RT_ABI si_int
__divmodsi4(si_int a
, si_int b
, si_int
* rem
);
12 int test__divmodsi4(si_int a
, si_int b
,
13 si_int expected_result
, si_int expected_rem
)
16 si_int result
= __divmodsi4(a
, b
, &rem
);
17 if (result
!= expected_result
) {
18 printf("error in __divmodsi4: %d / %d = %d, expected %d\n",
19 a
, b
, result
, expected_result
);
22 if (rem
!= expected_rem
) {
23 printf("error in __divmodsi4: %d mod %d = %d, expected %d\n",
24 a
, b
, rem
, expected_rem
);
34 if (test__divmodsi4(0, 1, 0, 0))
36 if (test__divmodsi4(0, -1, 0, 0))
39 if (test__divmodsi4(2, 1, 2, 0))
41 if (test__divmodsi4(2, -1, -2, 0))
43 if (test__divmodsi4(-2, 1, -2, 0))
45 if (test__divmodsi4(-2, -1, 2, 0))
48 if (test__divmodsi4(7, 5, 1, 2))
50 if (test__divmodsi4(-7, 5, -1, -2))
52 if (test__divmodsi4(19, 5, 3, 4))
54 if (test__divmodsi4(19, -5, -3, 4))
57 if (test__divmodsi4(0x80000000, 8, 0xf0000000, 0))
59 if (test__divmodsi4(0x80000007, 8, 0xf0000001, -1))