diff mbox

[37/40] target-alpha: Use non-local temps for zero/sink

Message ID 1397763195-1485-38-git-send-email-rth@twiddle.net
State New
Headers show

Commit Message

Richard Henderson April 17, 2014, 7:33 p.m. UTC
These values are no longer live across branches.

Signed-off-by: Richard Henderson <rth@twiddle.net>
---
 target-alpha/translate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/target-alpha/translate.c b/target-alpha/translate.c
index 2c77136..c5f2a8d 100644
--- a/target-alpha/translate.c
+++ b/target-alpha/translate.c
@@ -153,7 +153,7 @@  void alpha_translate_init(void)
 static TCGv load_zero(DisasContext *ctx)
 {
     if (TCGV_IS_UNUSED_I64(ctx->zero)) {
-        ctx->zero = tcg_const_local_i64(0);
+        ctx->zero = tcg_const_i64(0);
     }
     return ctx->zero;
 }
@@ -161,7 +161,7 @@  static TCGv load_zero(DisasContext *ctx)
 static TCGv dest_sink(DisasContext *ctx)
 {
     if (TCGV_IS_UNUSED_I64(ctx->sink)) {
-        ctx->sink = tcg_temp_local_new();
+        ctx->sink = tcg_temp_new();
     }
     return ctx->sink;
 }