From: Edgar E. Iglesias Date: Sat, 22 Jan 2011 11:00:12 +0000 (+0100) Subject: microblaze: Remove debug leftovers. X-Git-Tag: v0.14.0-rc0~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2accfb5fa6f097845915973a06824bc72fb26e94;p=thirdparty%2Fqemu.git microblaze: Remove debug leftovers. No functional changes. Signed-off-by: Edgar E. Iglesias --- diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c index dcc867e6253..dd2865cd466 100644 --- a/target-microblaze/translate.c +++ b/target-microblaze/translate.c @@ -884,7 +884,6 @@ static void dec_load(DisasContext *dc) tcg_gen_sub_tl(low, tcg_const_tl(3), low); tcg_gen_andi_tl(t, t, ~3); tcg_gen_or_tl(t, t, low); - tcg_gen_mov_tl(env_debug, low); tcg_gen_mov_tl(env_imm, t); tcg_temp_free(low); break; @@ -1010,7 +1009,6 @@ static void dec_store(DisasContext *dc) tcg_gen_sub_tl(low, tcg_const_tl(3), low); tcg_gen_andi_tl(t, t, ~3); tcg_gen_or_tl(t, t, low); - tcg_gen_mov_tl(env_debug, low); tcg_gen_mov_tl(env_imm, t); tcg_temp_free(low); break;