Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20000605-3.c
blob7ebb27fdb780f8e0c8a2ff9f4e52ccc7d50d8510
1 struct F { int x; int y; };
3 int main()
5 int timeout = 0;
6 int x = 0;
7 while (1)
9 const struct F i = { x++, };
10 if (i.x > 0)
11 break;
12 if (++timeout > 5)
13 goto die;
15 return 0;
16 die:
17 abort ();