blob: 5fec76ec0fda01c98f54fc6544ecc21d67ce2bb6 [file] [log] [blame]
#include <arm_neon.h>
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
/* { dg-skip-if "" { arm*-*-* } } */
uint8x16x3_t
f_vld3q_lane_u8 (uint8_t * p, uint8x16x3_t v)
{
uint8x16x3_t res;
/* { dg-error "lane 16 out of range 0 - 15" "" { target *-*-* } 0 } */
res = vld3q_lane_u8 (p, v, 16);
/* { dg-error "lane -1 out of range 0 - 15" "" { target *-*-* } 0 } */
res = vld3q_lane_u8 (p, v, -1);
return res;
}