2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960419-1.c
blob68bd2b97dd12debcb55c1c53e3930df4db14945d
1 static int i;
3 void
4 check(x)
5 int x;
7 if (!x)
8 abort();
11 main()
13 int *p = &i;
15 check(p != (void *)0);
16 exit (0);