From 22cad5c9dd8d21e3f89f9c089c5735f462abb36a Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 27 May 2011 19:03:26 +0200 Subject: [PATCH] target-s390x: Fix duplicate call of tcg_temp_new_i64 tmp2 = tcg_temp_new_i64() is already executed unconditionally, so there is no need to call it a second time for 64 bit hosts. Signed-off-by: Stefan Weil Signed-off-by: Alexander Graf --- target-s390x/translate.c | 1 - 1 file changed, 1 deletion(-) diff --git a/target-s390x/translate.c b/target-s390x/translate.c index 865a9dfa53..141a72f0e8 100644 --- a/target-s390x/translate.c +++ b/target-s390x/translate.c @@ -2068,7 +2068,6 @@ do_mh: tcg_gen_qemu_ld32u(tmp2, tmp, get_mem_index(s)); tcg_gen_trunc_i64_i32(TCGV_HIGH(regs[i]), tmp2); #else - tmp2 = tcg_temp_new_i64(); tcg_gen_qemu_ld32u(tmp2, tmp, get_mem_index(s)); tcg_gen_shl_i64(tmp2, tmp2, tmp4); tcg_gen_ext32u_i64(regs[i], regs[i]); -- 2.34.1