| /* { dg-do compile } */ |
| /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */ |
| /* { dg-require-effective-target arm_v8_2a_bf16_neon_ok } */ |
| /* { dg-add-options arm_v8_2a_bf16_neon } */ |
| |
| #include <arm_neon.h> |
| |
| bfloat16x4x4_t |
| f_vld4_lane_bf16 (bfloat16_t * p, bfloat16x4x4_t v) |
| { |
| bfloat16x4x4_t res; |
| /* { dg-error "lane 4 out of range 0 - 3" "" { target *-*-* } 0 } */ |
| res = vld4_lane_bf16 (p, v, 4); |
| /* { dg-error "lane -1 out of range 0 - 3" "" { target *-*-* } 0 } */ |
| res = vld4_lane_bf16 (p, v, -1); |
| return res; |
| } |