Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 930622-1.c
blobd733e133d35af6d3608b390f90e35e442039b2a2
1 int a = 1, b;
3 g () { return 0; }
4 h (x) {}
6 f ()
8 if (g () == -1)
9 return 0;
10 a = g ();
11 if (b >= 1)
12 h (a);
13 return 0;
16 main ()
18 f ();
19 if (a != 0)
20 abort ();
21 exit (0);