* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / visium / overflow32.c
blob2c489e3a16ee02b659edf5008f3dc19a3cce1807
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
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" } } */