PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr67317-3.c
blobc141d098108b9cdd63011ff4f1fc2f51ee1ee99c
1 /* PR target/67317 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 typedef unsigned int u32;
7 u32 testcarry_u32 (u32 a, u32 b, u32 c, u32 d)
9 u32 result0, result1;
11 __builtin_ia32_sbb_u32
12 (__builtin_ia32_sbb_u32 (0, a, c, &result0), b, d, &result1);
14 return result0 ^ result1;
17 /* { dg-final { scan-assembler-not "addb" } } */
18 /* { dg-final { scan-assembler-not "setn?c" } } */