Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/pr104544.c
2023-03-06 14:48:14 +01:00

19 lines
265 B
C

/* PR rtl-optimization/104544 */
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -fcompare-debug" } */
int m, n;
__int128 q;
void
bar (unsigned __int128 x, int y)
{
if (x)
q += y;
}
void
foo (void)
{
bar (!!q - 1, (m += m ? m : 1) < n);
}