aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/mve/intrinsics/vnegq_m_s8.c
blob: 430ebc737835e48c68026851216f99d60ba703c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-require-effective-target arm_v8_1m_mve_ok } */
/* { dg-add-options arm_v8_1m_mve } */
/* { dg-additional-options "-O2" } */

#include "arm_mve.h"

int8x16_t
foo (int8x16_t inactive, int8x16_t a, mve_pred16_t p)
{
  return vnegq_m_s8 (inactive, a, p);
}

/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vnegt.s8"  }  } */

int8x16_t
foo1 (int8x16_t inactive, int8x16_t a, mve_pred16_t p)
{
  return vnegq_m (inactive, a, p);
}

/* { dg-final { scan-assembler "vpst" } } */