2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr35767-2.c
blob5457c48112b7d7f8b8b36b54d199cee8063ff8c7
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse2" } */
3 /* { dg-require-effective-target sse2 } */
5 #include "sse2-check.h"
7 typedef __m128 __attribute__((aligned(1))) unaligned;
9 __m128 __attribute__((noinline))
10 foo (__m128 a1, __m128 a2, __m128 a3, __m128 a4,
11 __m128 a5, __m128 a6, __m128 a7, __m128 a8,
12 int b1, int b2, int b3, int b4, int b5, int b6, int b7, unaligned y)
14 return y;
17 void
18 sse2_test (void)
20 unaligned x;
21 __m128 y = { 0 };
22 x = y;
23 y = foo (y, y, y, y, y, y, y, y, 1, 2, 3, 4, 5, 6, -1, x);
24 if (__builtin_memcmp (&y, &x, sizeof (y)) != 0)
25 abort ();