aboutsummaryrefslogtreecommitdiffstats
path: root/target-microblaze
diff options
context:
space:
mode:
authorEdgar E. Iglesias <edgar.iglesias@gmail.com>2011-01-22 12:00:12 +0100
committerEdgar E. Iglesias <edgar.iglesias@gmail.com>2011-01-22 12:00:12 +0100
commit2accfb5fa6f097845915973a06824bc72fb26e94 (patch)
tree2817dd43ffd92b9fb746be2d28231a63976056fb /target-microblaze
parentee8b246f825efa0aa299fc33b8dcc8a8a862cc53 (diff)
microblaze: Remove debug leftovers.
No functional changes. Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'target-microblaze')
-rw-r--r--target-microblaze/translate.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c
index dcc867e62..dd2865cd4 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;