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

#include "arm_neon.h"

float32x2_t a, b, c, e;

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