Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20030828-1.c
blobe8c1f0195df439918d93010150de136dc2d0e63f
1 const int *p;
3 int bar (void)
5 return *p + 1;
8 main ()
10 /* Variable 'i' is never used but it's aliased to a global pointer. The
11 alias analyzer was not considering that 'i' may be used in the call to
12 bar(). */
13 const int i = 5;
14 p = &i;
15 if (bar() != 6)
16 abort ();
17 exit (0);