1 /* Test the vqdmulhq_laneq_s16 AArch64 SIMD intrinsic. */ 2 3 /* { dg-do compile } */ 4 /* { dg-options "-save-temps -O3 -fno-inline" } */ 5 6 #include "arm_neon.h" 7 8 int16x8_t t_vqdmulhq_laneq_s16(int16x8_t a,int16x8_t b)9t_vqdmulhq_laneq_s16 (int16x8_t a, int16x8_t b) 10 { 11 return vqdmulhq_laneq_s16 (a, b, 0); 12 } 13 14 /* { dg-final { scan-assembler-times "sqdmulh\[ \t\]+\[vV\]\[0-9\]+\.8\[hH\], ?\[vV\]\[0-9\]+\.8\[hH\], ?\[vV\]\[0-9\]+\.\[hH\]\\\[0\\\]\n" 1 } } */ 15