ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/powerpc/pr84700.c

13 lines
200 B
C

/* PR target/84700 */
/* { dg-do compile } */
/* { dg-options "-O1 -misel" } */
long long int
foo (long long int x)
{
long long int a = x < 2;
int b = a >= 0;
return a + ((x == 0) ? a : b);
}