void test_vreinterpretQp128_u16 (void)
{
    poly128_t out_poly128_t;
    uint16x8_t arg0_uint16x8_t;

    out_poly128_t = vreinterpretq_p128_u16 (arg0_uint16x8_t);
}
// CHECK-LABEL: test_vreinterpretq_p128_u16
// CHECK: ret
poly128_t test_vreinterpretq_p128_u16(uint16x8_t a) {
  return vreinterpretq_p128_u16(a);
}