* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: Don't
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20090219-1.c
bloba5f973f68652d5382977b05ddaff9b1d07ee42a5
1 /* On ARM, BAR used to get a bogus number in E due to stack
2 misalignment. */
4 extern void abort (void);
5 extern void exit (int);
7 void
8 foo (void)
10 int f = 0;
12 void bar (int a, int b, int c, int d, int e)
14 if (e != 0)
16 f = 1;
17 abort ();
21 bar (0, 0, 0, 0, 0);
24 int
25 main (void)
27 foo ();
28 exit (0);