aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/vld4q_lane_f16_indices_1.c
blob: c27559f4ee894b62cbc38612e669586c24f32939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <arm_neon.h>

/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
/* { dg-excess-errors "" { xfail arm*-*-* } } */

float16x8x4_t
f_vld4q_lane_f16 (float16_t * p, float16x8x4_t v)
{
  float16x8x4_t res;
  /* { dg-error "lane 8 out of range 0 - 7" "" { xfail arm*-*-* } 0 } */
  res = vld4q_lane_f16 (p, v, 8);
  /* { dg-error "lane -1 out of range 0 - 7" "" { xfail arm*-*-* } 0 } */
  res = vld4q_lane_f16 (p, v, -1);
  return res;
}