1  /* Test the vqdmulhh_laneq_s16 AArch64 SIMD intrinsic.  */
       2  
       3  /* { dg-do run } */
       4  /* { dg-options "-save-temps -O3" } */
       5  
       6  #include "arm_neon.h"
       7  
       8  extern void abort (void);
       9  
      10  int16_t __attribute__((noipa))
      11  test_vqdmulhh (int16_t arg1, int16x8_t arg2)
      12  {
      13    return vqdmulhh_laneq_s16 (arg1, arg2, 7);
      14  }
      15  
      16  int
      17  main (void)
      18  {
      19    int16_t actual;
      20    int16_t expected;
      21  
      22    actual = test_vqdmulhh (268,
      23  			  vcombine_s16 (vcreate_s16 (0xffffffff00000000ULL),
      24  					vcreate_s16 (0x0000800018410000ULL)));
      25    expected = 0;
      26  
      27    if (expected != actual)
      28      abort ();
      29  
      30    return 0;
      31  }
      32  
      33  
      34  /* { dg-final { scan-assembler-times "sqdmulh\[ \t\]+\[hH\]\[0-9\]+, ?\[hH\]\[0-9\]+, ?\[vV\]\[0-9\]+\.\[hH\]\\\[7\\\]\n" 1 } } */