Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / simd / vqdmull_high_lane_s32.c
blob583e8a172104a0879336ba5e5b4b87dfcbc2a14a
1 /* Test the vqdmull_high_lane_s32 AArch64 SIMD intrinsic. */
3 /* { dg-do compile } */
4 /* { dg-options "-save-temps -O3 -fno-inline" } */
6 #include "arm_neon.h"
8 int64x2_t
9 t_vqdmull_high_lane_s32 (int32x4_t a, int32x2_t b)
11 return vqdmull_high_lane_s32 (a, b, 0);
14 /* { dg-final { scan-assembler-times "sqdmull2\[ \t\]+\[vV\]\[0-9\]+\.2\[dD\], ?\[vV\]\[0-9\]+\.4\[sS\], ?\[vV\]\[0-9\]+\.\[sS\]\\\[0\\\]\n" 1 } } */
15 /* { dg-final { cleanup-saved-temps } } */