summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/attr-neon-builtin-fail2.c
blob: 0f8ac1b723c286eb5987c6a1f134b621d63bb7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Check that calling a neon builtin from a function compiled with vfp fails.  */
/* { dg-do compile } */
/* { dg-require-effective-target arm_vfp_ok } */
/* { dg-options "-O2 -mfloat-abi=softfp" } */

extern __simd64_int8_t a, b;

__attribute__ ((target ("fpu=vfp")))
void
foo (__simd128_int16_t *p)
{
  *p = (__simd128_int16_t)__builtin_neon_vaddlsv8qi (a, b); /* { dg-error "You must enable NEON instructions .*" } */

}