aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/vqdmulhq_laneq_s32.c
blob: d375fe818e6cf46bf7a4d25f05226f6f1631e4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Test the vqdmulhq_laneq_s32 AArch64 SIMD intrinsic.  */

/* { dg-do compile } */
/* { dg-options "-save-temps -O3 -fno-inline" } */

#include "arm_neon.h"

int32x4_t
t_vqdmulhq_laneq_s32 (int32x4_t a, int32x4_t b)
{
  return vqdmulhq_laneq_s32 (a, b, 0);
}

/* { dg-final { scan-assembler-times "sqdmulh\[ \t\]+\[vV\]\[0-9\]+\.4\[sS\], ?\[vV\]\[0-9\]+\.4\[sS\], ?\[vV\]\[0-9\]+\.\[sS\]\\\[0\\\]\n" 1 } } */
/* { dg-final { cleanup-saved-temps } } */