PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000707-1.c
blobf1c50a923600ce596add7c7964761daa8b27184f
1 extern void abort(void);
2 extern void exit(int);
4 struct baz {
5 int a, b, c;
6 };
8 void
9 foo (int a, int b, int c)
11 if (a != 4)
12 abort ();
15 void
16 bar (struct baz x, int b, int c)
18 foo (x.b, b, c);
21 int
22 main ()
24 struct baz x = { 3, 4, 5 };
25 bar (x, 1, 2);
26 exit (0);