Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / execute / 980929-1.c
blob1d9246e01d7b4216c39e3eeb0e98007c83477c02
1 void f(int i)
3 if (i != 1000)
4 abort ();
8 int main()
10 int n=1000;
11 int i;
13 f(n);
14 for(i=0; i<1; ++i) {
15 f(n);
16 n=666;
17 &n;
20 exit (0);