Esempio n. 1
0
void test_vdup_lanes32 (void)
{
  int32x2_t out_int32x2_t;
  int32x2_t arg0_int32x2_t;

  out_int32x2_t = vdup_lane_s32 (arg0_int32x2_t, 1);
}
Esempio n. 2
0
int32x2_t test_vdup_lane_s32(int32x2_t v1) {
  // CHECK: test_vdup_lane_s32
  return vdup_lane_s32(v1, 1);
  // CHECK: dup {{v[0-9]+}}.2s, {{v[0-9]+}}.s[1]
}
Esempio n. 3
0
wrap_vdup_lane_s32_1 (int32x2_t a)
{
  return vdup_lane_s32 (a, 1);
}
Esempio n. 4
0
wrap_vdup_lane_s32_0 (int32x2_t a)
{
  return vdup_lane_s32 (a, 0);
}