ada: Move special case for null string literal from frontend to backend
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001027-1.c
blobc2df3f4547c109032f0adf7c83a257b9d56ee1bd
1 void abort (void);
2 void exit (int);
4 int x,*p=&x;
6 int main()
8 int i=0;
9 x=1;
10 p[i]=2;
11 if (x != 2)
12 abort ();
13 exit (0);