Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / visium / overflow32.c
blobe73deb707567e8d32efc7bf323778e2bfaf2e628
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-if-conversion" } */
4 #include <stdbool.h>
6 bool my_uadd_overflow (unsigned int a, unsigned int b, unsigned int *res)
8 return __builtin_add_overflow (a, b, res);
11 bool my_usub_overflow (unsigned int a, unsigned int b, unsigned int *res)
13 return __builtin_sub_overflow (a, b, res);
16 bool my_uneg_overflow (unsigned int a, unsigned int *res)
18 return __builtin_sub_overflow (0, a, res);
21 bool my_add_overflow (int a, int b, int *res)
23 return __builtin_add_overflow (a, b, res);
26 bool my_sub_overflow (int a, int b, int *res)
28 return __builtin_sub_overflow (a, b, res);
31 bool my_neg_overflow (int a, int *res)
33 return __builtin_sub_overflow (0, a, res);
36 /* { dg-final { scan-assembler-times "add.l" 2 } } */
37 /* { dg-final { scan-assembler-times "sub.l" 4 } } */
38 /* { dg-final { scan-assembler-not "cmp.l" } } */
39 /* { dg-final { scan-assembler-not "mov.l" } } */