OSDN Git Service

PR tree-optimization/34046
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030224-1.c
1 void zzz (char *s1, char *s2, int len, int *q)
2 {
3   int z = 5;
4   unsigned int i,  b;
5   struct { char a[z]; } x;
6           
7   for (i = 0; i < len; i++)
8     s1[i] = s2[i];
9
10   b = z & 0x3;
11
12   len += (b == 0 ? 0 : 1) + z;
13     
14   *q = len;
15
16   foo (x, x);
17 }