blob: fa1769b62fbb3a62a7d35f8245b1ea38cc2d7c4f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
struct A
{
float V4SF __attribute__ ((vector_size (16)));
};
void
foo (long double x, struct A y, long double z)
{
int i;
struct A a = { { 0, 1, 2, 3 } };
if (x != 8.0L || z != 8.0L)
__builtin_abort ();
if (__builtin_memcmp (&a, &y, sizeof (a)))
__builtin_abort ();
}