* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: Don't
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001013-1.c
blob0d139fc8039ca6cf361ea41f8df839de1e54ea21
1 struct x {
2 int a, b;
3 } z = { -4028, 4096 };
5 int foo(struct x *p, int y)
7 if ((y & 0xff) != y || -p->b >= p->a)
8 return 1;
9 return 0;
12 main()
14 if (foo (&z, 10))
15 abort ();
16 exit (0);