aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr48189.c
blob: 86b995dc9848edf3c78e937cc9c6a41251ea7536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/48189 */
/* { dg-do compile } */
/* { dg-options "-O --param max-predicted-iterations=0" } */

struct S { int s[8]; };
  
void
foo (int *x, struct S *y)
{
  int i;
  for (i = 0; y[i].s[i]; i++)
    *x++ = y[i].s[i];
}