OSDN Git Service

* Makefile.in (local-distclean): Remove leftover built files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20000724-1.c
1 /* { dg-do run { target i?86-*-linux* } } */
2 /* { dg-options "-O2 -fomit-frame-pointer" } */
3
4 extern void abort (void);
5 extern void exit (int);
6
7 struct s {
8   struct { int a; } a;
9   int b;
10   struct { struct { int a; } a; struct t { struct t *a, *b; } b; } c;
11 };
12
13 int bar(int (*fn)(void *), void *arg, unsigned long flags)
14 {
15   return 0;
16 }
17
18 int baz(void *x)
19 {
20   return 0;
21 }
22
23 void do_check (struct s *) asm ("do_check") __attribute__((regparm(1)));
24
25 void do_check(struct s *x)
26 {
27   if (x->a.a || x->b || x->c.a.a)
28     abort();
29   if (x->c.b.a != &x->c.b || x->c.b.b != &x->c.b)
30     abort();
31 }
32
33 asm ("
34 ___checkme:
35   pushl %eax; pushl %ebx; pushl %ecx; pushl %edx; pushl %esi; pushl %edi; pushl $0; pushl $0
36   pushl $0; pushl $0; pushl $0; pushl $0; pushl $0; pushl $0; pushl $0; pushl $0
37   movl %ecx, %eax
38   call do_check
39   popl %eax; popl %eax; popl %eax; popl %eax; popl %eax; popl %eax; popl %eax; popl %eax
40   popl %eax; popl %eax; popl %edi; popl %esi; popl %edx; popl %ecx; popl %ebx; popl %eax
41   ret
42 ");
43
44 extern inline void do_asm(struct s * x)
45 {
46   asm volatile("call ___checkme" : : "c" (x) : "memory");
47 }
48
49 int foo(void)
50 {
51   struct s x = { { 0 }, 0, { { 0 }, { &x.c.b, &x.c.b } } };
52   bar(baz, &x, 1);
53   do_asm(&x);
54   bar(baz, &x, 1);
55   do_asm(&x);
56   return 0;
57 }
58
59 int main()
60 {
61   foo();
62   exit(0);
63 }