(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
simd/
vqrdmulhq_laneq_s16.c
       1  /* Test the vqrdmulhq_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
       9  t_vqrdmulhq_laneq_s16 (int16x8_t a, int16x8_t b)
      10  {
      11    return vqrdmulhq_laneq_s16 (a, b, 0);
      12  }
      13  
      14  /* { dg-final { scan-assembler-times "sqrdmulh\[ \t\]+\[vV\]\[0-9\]+\.8\[hH\], ?\[vV\]\[0-9\]+\.8\[hH\], ?\[vV\]\[0-9\]+\.\[hH\]\\\[0\\\]\n" 1 } } */