blob: b5822b7fcb7b836c9e26b9590b42fd1a393b8a0b [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
#define vector __attribute__((vector_size(16)))
vector float combine (float a, float b)
{
return (vector float) { a, b, a, b };
}
/* { dg-final { scan-assembler-not "movi\t" } } */
/* { dg-final { scan-assembler-not "orr\t" } } */