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