Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr113114.c
blob: 978e594eb3dc3746576c57cdf8d5ae736681474c [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-funroll-loops" } */
float
val
[
128
];
float
x
;
void
bar
()
{
int
i
=
55
;
for
(;
i
>=
0
;
--
i
)
x
+=
val
[
i
];
}