1  /* Test the vqdmullh_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  int32_t
       9  t_vqdmullh_laneq_s16 (int16_t a, int16x8_t b)
      10  {
      11    return vqdmullh_laneq_s16 (a, b, 0);
      12  }
      13  
      14  /* { dg-final { scan-assembler-times "sqdmull\[ \t\]+\[sS\]\[0-9\]+, ?\[hH\]\[0-9\]+, ?\[hH\]\[0-9\]\n" 1 } } */