blob: 5788c2c008f8629c512bcfb39133d430348acb56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* { dg-options "-O -fgraphite-identity -ffast-math -fno-tree-loop-im" } */
struct S
{
int n;
float *a;
};
float foo (struct S *s)
{
float f = 0, g=0;
int i;
for (i = 0; i < s->n; i++)
f += s->a[i];
for (i = 0; i < s->n; i++)
;
return f;
}
|