Fortran: fix dependency checks for inquiry refs [PR115039]
[official-gcc.git] / gcc / testsuite / gcc.target / nvptx / bool-2.c
blobb7792480b54aaf98980dff4f67f0810045dcef70
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 int foo(int x, int y)
6 return (x==21) && (y==69);
9 int bar(int x, int y)
11 return (x==21) & (y==69);
14 /* { dg-final { scan-assembler-times "and.pred" 2 } } */