2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / vect-init-4.c
blob09a00958f14aa08abe73015b1b44772faca9a21a
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 #define vector __attribute__((vector_size(16)))
6 vector float combine (float a, float b)
8 return (vector float) { a, b, b, a };
11 /* { dg-final { scan-assembler-not "movi\t" } } */
12 /* { dg-final { scan-assembler-not "orr\t" } } */