Revision 88422e2e

b/tcg/tcg-op.h
1418 1418
    tcg_gen_concat_i32_i64(dest, low, high);
1419 1419
#else
1420 1420
    TCGv tmp = tcg_temp_new(TCG_TYPE_I64);
1421
    tcg_gen_ext32u_i64(dest, low);
1421 1422
    tcg_gen_shli_i64(tmp, high, 32);
1422
    tcg_gen_or_i64(dest, low, tmp);
1423
    tcg_gen_or_i64(dest, dest, tmp);
1423 1424
    tcg_temp_free(tmp);
1424 1425
#endif
1425 1426
}

Also available in: Unified diff