1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 
4 #define vector __attribute__((vector_size(16)))
5 
combine(float a,float b)6 vector float combine (float a, float b)
7 {
8   return (vector float) { a, b, b, a };
9 }
10 
11 /* { dg-final { scan-assembler-not "movi\t" } } */
12 /* { dg-final { scan-assembler-not "orr\t" } } */
13