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

14 lines
248 B
C

/* PR rtl-optimization/83986 */
/* { dg-do compile } */
/* { dg-options "-g -O2 -fsched2-use-superblocks -funwind-tables --param max-pending-list-length=1" } */
int v;
int
foo (int x)
{
v &= !!v && !!x;
if (v != 0)
foo (0);
return 0;
}