PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr44948-2a.c
blob8d48b96303e3ea870405fef90f269dfae7047366
1 /* PR target/44948 */
2 /* { dg-do run } */
3 /* { dg-options "-O -Wno-psabi -mno-sse -mtune=generic -std=gnu89" } */
4 /* { dg-require-effective-target ia32 } */
5 /* { dg-require-effective-target sse2_runtime } */
6 /* { dg-additional-sources pr44948-2b.c } */
8 #pragma GCC target ("sse2")
10 struct A
12 float V4SF __attribute__ ((vector_size (16)));
15 int
16 main (void)
18 struct A a = { { 0, 1, 2, 3 } };
19 foo (8.0L, a, 8.0L);
20 return 0;