2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / arm / pr54051.c
blob1d2e93c894febc10c020bfbd8d0361fa4aa8ce02
1 /* { dg-do assemble } */
2 /* { dg-require-effective-target arm_neon } */
3 /* { dg-options "-O2" } */
4 /* { dg-add-options arm_neon } */
6 #include <arm_neon.h>
8 int32_t a __attribute__ ((aligned (64)));
10 int32x2x3_t test (void)
12 return vld3_dup_s32 (&a);
15 int32x2x3_t test1 (void)
17 int32x2x3_t res ;
18 return vld3_lane_s32 (&a, res, 1);