aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/pr69194.c
blob: 477d5f92c8ec169ce5719e8583d436698c47117b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR target/69194 */
/* { dg-do-compile } */
/* { dg-require-effective-target arm_neon_ok } */
/* { dg-options "-O2" } */
/* { dg-add-options arm_neon } */

typedef __simd128_float32_t float32x4_t;

float32x4_t
sub (float32x4_t a, float32x4_t b, float32x4_t c, float32x4_t d, float32x4_t e)
{
  return __builtin_neon_vld1v4sf((const float *)&e);
}