summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/mve/intrinsics/vmaxnmavq_f32.c
blob: dc88ef89859c7627311c208badcf0d7e570affeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile  } */
/* { dg-require-effective-target arm_v8_1m_mve_fp_ok } */
/* { dg-add-options arm_v8_1m_mve_fp } */
/* { dg-additional-options "-O2" } */

#include "arm_mve.h"

float32_t
foo (float32_t a, float32x4_t b)
{
  return vmaxnmavq_f32 (a, b);
}

/* { dg-final { scan-assembler "vmaxnmav.f32"  }  } */

float32_t
foo1 (float32_t a, float32x4_t b)
{
  return vmaxnmavq (a, b);
}

/* { dg-final { scan-assembler "vmaxnmav.f32"  }  } */