PR rtl-optimization/87918
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr87370.c
blobc7b6295a33bc3a330b96170f108ac7cce5c50dc0
1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-O2" } */
4 struct A
6 int b[4];
7 };
8 struct B
10 char a[12];
11 int b;
13 struct C
15 char a[16];
18 struct A
19 f1 (void)
21 struct A x = {};
22 return x;
25 struct B
26 f2 (void)
28 struct B x = {};
29 return x;
32 struct C
33 f3 (void)
35 struct C x = {};
36 return x;
39 /* { dg-final { scan-assembler-not "xmm" } } */