blob: 29d6381cf5eee895d5c8a05fde4e20d2ffca365c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* { dg-do compile } */
/* { dg-options "-O -funroll-loops -fcompare-debug" } */
struct S {
int i;
};
extern void baz(int);
static inline void bar(struct S *s)
{
baz(s->i);
}
void foo(int *w, int cond, struct S *s)
{
int i, n = 0;
while (*w++ != 0) n++;
for (i = 0; i < n; i++)
if (cond == 0)
bar(s + i);
}
|