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

/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */

float32x4x4_t
f_vld4q_lane_f32 (float32_t * p, float32x4x4_t v)
{
  float32x4x4_t res;
  /* { dg-error "lane 4 out of range 0 - 3" "" { target *-*-* } 0 } */
  res = vld4q_lane_f32 (p, v, 4);
  /* { dg-error "lane -1 out of range 0 - 3" "" { target *-*-* } 0 } */
  res = vld4q_lane_f32 (p, v, -1);
  return res;
}