]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmulhq_m_n_s32.c
256353a0a2129433560a818c7f879a8ad8e145af
[gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vqdmulhq_m_n_s32.c
1 /* { dg-require-effective-target arm_v8_1m_mve_ok } */
2 /* { dg-add-options arm_v8_1m_mve } */
3 /* { dg-additional-options "-O2" } */
4
5 #include "arm_mve.h"
6
7 int32x4_t
8 foo (int32x4_t inactive, int32x4_t a, int32_t b, mve_pred16_t p)
9 {
10 return vqdmulhq_m_n_s32 (inactive, a, b, p);
11 }
12
13 /* { dg-final { scan-assembler "vpst" } } */
14 /* { dg-final { scan-assembler "vqdmulht.s32" } } */
15
16 int32x4_t
17 foo1 (int32x4_t inactive, int32x4_t a, int32_t b, mve_pred16_t p)
18 {
19 return vqdmulhq_m (inactive, a, b, p);
20 }
21
22 /* { dg-final { scan-assembler "vpst" } } */
23 /* { dg-final { scan-assembler "vqdmulht.s32" } } */
This page took 0.034214 seconds and 5 git commands to generate.