i386: Fix up X87_ENABLE_{FLOAT,ARITH} in conditions [PR94440]
[gcc.git] / gcc / testsuite / gcc.target / nvptx / vadd_add.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 int foo(int x, int y, int z)
5 {
6 return x + y + z;
7 }
8
9 unsigned int bar(unsigned int x, unsigned int y, unsigned int z)
10 {
11 return x + y + z;
12 }
13
14 /* { dg-final { scan-assembler-times "vadd.u32.u32.u32.add" 2 } } */
15