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 int64_t
foo(int64_t a,int32x4_t b,int32x4_t c,mve_pred16_t p)8 foo (int64_t a, int32x4_t b, int32x4_t c, mve_pred16_t p)
9 {
10   return vmlsldavaxq_p_s32 (a, b, c, p);
11 }
12 
13 /* { dg-final { scan-assembler "vmlsldavaxt.s32"  }  } */
14 
15 int64_t
foo1(int64_t a,int32x4_t b,int32x4_t c,mve_pred16_t p)16 foo1 (int64_t a, int32x4_t b, int32x4_t c, mve_pred16_t p)
17 {
18   return vmlsldavaxq_p (a, b, c, p);
19 }
20 
21 /* { dg-final { scan-assembler "vmlsldavaxt.s32"  }  } */
22