blob: 926718ee5733c3e9ffcade7264b816866a9be2c9 [file] [log] [blame]
#include <arm_neon.h>
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
/* { dg-skip-if "" { arm*-*-* } } */
uint64x1x3_t
f_vld3_lane_u64 (uint64_t * p, uint64x1x3_t v)
{
uint64x1x3_t res;
/* { dg-error "lane 1 out of range 0 - 0" "" { target *-*-* } 0 } */
res = vld3_lane_u64 (p, v, 1);
/* { dg-error "lane -1 out of range 0 - 0" "" { target *-*-* } 0 } */
res = vld3_lane_u64 (p, v, -1);
return res;
}