Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / builtins / Unit / umoddi3_test.c
blob3d3e8bb87de0ad4ce6b7d3a1071f0e7b4b3f3f89
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_umoddi3
4 #include "int_lib.h"
5 #include <stdio.h>
7 // Returns: a % b
9 COMPILER_RT_ABI du_int __umoddi3(du_int a, du_int b);
11 int test__umoddi3(du_int a, du_int b, du_int expected_r)
13 du_int r = __umoddi3(a, b);
14 if (r != expected_r)
15 printf("error in __umoddi3: %lld %% %lld = %lld, expected %lld\n",
16 a, b, r, expected_r);
17 return r != expected_r;
20 int main()
22 if (test__umoddi3(0, 1, 0))
23 return 1;
24 if (test__umoddi3(2, 1, 0))
25 return 1;
26 if (test__umoddi3(0x8000000000000000uLL, 1, 0x0uLL))
27 return 1;
28 if (test__umoddi3(0x8000000000000000uLL, 2, 0x0uLL))
29 return 1;
30 if (test__umoddi3(0xFFFFFFFFFFFFFFFFuLL, 2, 0x1uLL))
31 return 1;
33 return 0;