blob: 76db072f2d07e3b90552509f273ec871810380f3 [file] [log] [blame]
#include <arm_neon.h>
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
uint32x2x2_t
f_vld2_lane_u32 (uint32_t * p, uint32x2x2_t v)
{
uint32x2x2_t res;
/* { dg-error "lane 2 out of range 0 - 1" "" { target *-*-* } 0 } */
res = vld2_lane_u32 (p, v, 2);
/* { dg-error "lane -1 out of range 0 - 1" "" { target *-*-* } 0 } */
res = vld2_lane_u32 (p, v, -1);
return res;
}