PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr60077-1.c
blobf20ca0a3c0a988c5e7413498fb120df76291a43d
1 /* Test that we generate aligned load when memory is aligned. */
2 /* { dg-do compile } */
3 /* { dg-options "-O -mavx -mtune=generic" } */
4 /* { dg-final { scan-assembler-not "movups" } } */
5 /* { dg-final { scan-assembler "movaps" } } */
7 typedef float v8sf __attribute__ ((__vector_size__ (32)));
9 extern void foo (v8sf, v8sf, v8sf, v8sf, v8sf, v8sf, v8sf, v8sf, v8sf);
11 int
12 test (void)
14 v8sf x = { 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 };
16 foo (x, x, x, x, x, x, x, x, x);
17 return 0;