diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2015-07-10 18:03:30 +0200 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-07-23 20:37:12 -0700 |
commit | 961521261a3d600b0695b2e6d2b0f490076f7e90 (patch) | |
tree | 0a5660b188f71e99f1b0164d0d5297114d4976b2 /tcg | |
parent | 80adb8fcad4778376a11d394a9e01516819e2327 (diff) |
tcg/optimize: fix tcg_opt_gen_movi
Due to a copy&paste, the new op value is tested against mov_i32 instead
of movi_i32. The test is therefore always false. Fix that.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Message-Id: <1436544211-2769-1-git-send-email-aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/optimize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/optimize.c b/tcg/optimize.c index 0f6f7008da..18283cfd7b 100644 --- a/tcg/optimize.c +++ b/tcg/optimize.c @@ -205,7 +205,7 @@ static void tcg_opt_gen_movi(TCGContext *s, TCGOp *op, TCGArg *args, temps[dst].state = TCG_TEMP_CONST; temps[dst].val = val; mask = val; - if (TCG_TARGET_REG_BITS > 32 && new_op == INDEX_op_mov_i32) { + if (TCG_TARGET_REG_BITS > 32 && new_op == INDEX_op_movi_i32) { /* High bits of the destination are now garbage. */ mask |= ~0xffffffffull; } |