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

26 lines
386 B
C

/* { dg-do compile { target pthread } } */
/* { dg-options "-O2 -ftree-parallelize-loops=2 -fno-tree-dce -fno-tree-pre -fno-tree-vrp --param max-loop-header-insns=1" } */
int __attribute__ ((noinline))
lv (int tm)
{
(void) tm;
return 0;
}
void
o7 (int uu)
{
while (uu < 1)
while (uu != 0)
{
short int ca;
ca = lv (0);
(void) ca;
++uu;
}
lv (lv (0));
}