Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gcc.target
/
nvptx
/
bool-3.c
blob: ab4206a60eb99f92f27667a16cfc1fc9ea832283 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2" } */
int
foo
(
int
x
,
int
y
)
{
return
(
x
==
21
)
||
(
y
==
69
);
}
int
bar
(
int
x
,
int
y
)
{
return
(
x
==
21
)
|
(
y
==
69
);
}
/* { dg-final { scan-assembler-times "or.pred" 2 } } */