summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/lto/pr65837-attr_0.c
blob: f00480b5c02a8ade75c9ed013a57d22982969a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-lto-do run } */
/* { dg-require-effective-target arm_neon_hw } */
/* { dg-require-effective-target arm_neon_ok_no_float_abi } */
/* { dg-lto-options {{-flto -mfpu=neon}} } */

#include "arm_neon.h"

#pragma GCC target ("fpu=neon")

float32x2_t a, b, c, e;

int main()
{
  e = vmls_lane_f32 (a, b, c, 0);
  return 0;
}