Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.c-torture / compile / 20060217-1.c
blobc447142bc55fcadce431553b651453cc538b1182
1 /* PR middle-end/26334 */
3 struct U
5 unsigned int u[256];
6 };
8 struct S
10 int u, v, w, x;
11 int s[255];
14 int
15 foo (struct U *x, struct S *y)
17 register int i;
18 for (i = 0; i < 255; i++)
20 unsigned int v;
21 __asm__ ("" : "=r" (v) : "0" (x->u[i + 1]) : "cc");
22 y->s[i] = v;
24 return 0;