1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_modsi3
9 COMPILER_RT_ABI si_int
__modsi3(si_int a
, si_int b
);
11 int test__modsi3(si_int a
, si_int b
, si_int expected
) {
12 si_int x
= __modsi3(a
, b
);
14 fprintf(stderr
, "error in __modsi3: %d %% %d = %d, expected %d\n",
20 if (test__modsi3(0, 1, 0))
22 if (test__modsi3(0, -1, 0))
25 if (test__modsi3(5, 3, 2))
27 if (test__modsi3(5, -3, 2))
29 if (test__modsi3(-5, 3, -2))
31 if (test__modsi3(-5, -3, -2))
34 if (test__modsi3(0x80000000, 1, 0x0))
36 if (test__modsi3(0x80000000, 2, 0x0))
38 if (test__modsi3(0x80000000, -2, 0x0))
40 if (test__modsi3(0x80000000, 3, -2))
42 if (test__modsi3(0x80000000, -3, -2))