Exemple #1
0
void test_vmulQ_lanes16 (void)
{
    int16x8_t out_int16x8_t;
    int16x8_t arg0_int16x8_t;
    int16x4_t arg1_int16x4_t;

    out_int16x8_t = vmulq_lane_s16 (arg0_int16x8_t, arg1_int16x4_t, 1);
}
int16x8_t test_vmulq_lane_s16(int16x8_t a, int16x4_t v) {
  // CHECK: test_vmulq_lane_s16
  return vmulq_lane_s16(a, v, 1);
  // CHECK: mul {{v[0-9]+}}.8h, {{v[0-9]+}}.8h, {{v[0-9]+}}.h[1]
}