[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr60077-2.c
blobbbf846f6892ae56c4d4a986ac9bafcb7edd4bcd2
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 (int, int, int, int, int, int, int, 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 (1, 2, 3, 4, 5, 6, 7, x, x, x, x, x, x, x, x, x);
17 return 0;