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

17 lines
314 B
C

/* PR tree-optimization/93953 */
/* { dg-do compile } */
/* { dg-options "-O3 --param=ggc-min-expand=0 --param=ggc-min-heapsize=0" } */
int *b, c, e;
float d, g, f;
void
foo (int l)
{
for (; l; ++l)
{
float a = g > l;
d += a * b[4 * (l + c * e)];
f += a * b[4 * (l + c * e) + 1];
}
}