1 /* { dg-do compile { target { ia32 } } } */
2 /* { dg-options "-O2" } */
3
4 struct small{ short a,b; };
5
6 void call_func(void)
7 {
8 extern int func(struct small X);
9 static struct small const s = { 1,2 };
10 func(s);
11 }
12
13 /* { dg-final { scan-assembler "pushl\[ \\t]*\\\$131073" } } */