1  /* Test the vqdmlslh_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  int32_t __attribute__((noipa))
      11  test_vqdmlslh (int32_t arg1, int16_t arg2, int16x8_t arg3)
      12  {
      13    return vqdmlslh_laneq_s16 (arg1, arg2, arg3, 4);
      14  }
      15  
      16  int
      17  main (void)
      18  {
      19    int32_t actual;
      20    int32_t expected;
      21  
      22    actual = test_vqdmlslh (-2147450881, 32767,
      23  			  vcombine_s16 (vcreate_s16 (0x359d7fff00007fffULL),
      24  					vcreate_s16 (0xe678ffff00008000ULL)));
      25    expected = -32769;
      26  
      27    if (expected != actual)
      28      abort ();
      29  
      30    return 0;
      31  }
      32  
      33  
      34  /* { dg-final { scan-assembler-times "sqdmlsl\[ \t\]+\[sS\]\[0-9\]+, ?\[hH\]\[0-9\]+, ?\[vV\]\[0-9\]+\.\[hH\]\\\[4\\\]\n" 1 } } */