Sign in
gnu
/
gcc
/
ff4bf326d03e750a8d4905ea49425fe7d15a04b8
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr42630.c
blob: 34543dab5e9971439dd66ca1b87a760435d8f216 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O1 -fvariable-expansion-in-unroller -funroll-loops -fcompare-debug" } */
int
sum
(
int
*
buf
,
int
len
)
{
int
s
=
0
;
while
(--
len
>
0
)
s
+=
*
buf
++;
return
s
;
}