2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950621-1.c
blob5fc5a90287413aeb83ab0b831330d85b9a290b43
1 struct s
3 int a;
4 int b;
5 struct s *dummy;
6 };
8 f (struct s *sp)
10 return sp && sp->a == -1 && sp->b == -1;
13 main ()
15 struct s x;
16 x.a = x.b = -1;
17 if (f (&x) == 0)
18 abort ();
19 exit (0);