Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20010123-1.c
blob9c0989b0ef1ad1a83a71d0dfea2875c96f49c395
1 extern void abort ();
2 extern void exit (int);
4 struct s
6 int value;
7 char *string;
8 };
10 int main (void)
12 int i;
13 for (i = 0; i < 4; i++)
15 struct s *t = & (struct s) { 3, "hey there" };
16 if (t->value != 3)
17 abort();
18 t->value = 4;
19 if (t->value != 4)
20 abort();
22 exit (0);