(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
nvptx/
bool-3.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  int foo(int x, int y)
       5  {
       6    return (x==21) || (y==69);
       7  }
       8  
       9  int bar(int x, int y)
      10  {
      11    return (x==21) | (y==69);
      12  }
      13  
      14  /* { dg-final { scan-assembler-times "or.pred" 2 } } */