1 /* { dg-do compile } */
2 /* { dg-options "-O -mstrict-align" } */
3
4 #include <arm_neon.h>
5
6 int64_t s64[2] __attribute__((aligned(16)));
7 float64_t f64[2] __attribute__((aligned(16)));
8
9 int64x2_t test_s64() { return (int64x2_t) { s64[0], s64[1] }; }
10 float64x2_t test_f64() { return (float64x2_t) { f64[0], f64[1] }; }
11
12 /* { dg-final { scan-assembler-not {\tins\t} } } */