Commit 741a7444a307957e6f0b4942ef5c156466fd5bb7
1 parent
a9730017
target-ppc: fix TCG argument
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5661 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-ppc/translate.c
... | ... | @@ -1304,7 +1304,7 @@ static always_inline void gen_op_arith_neg (DisasContext *ctx, TCGv ret, TCGv ar |
1304 | 1304 | TCGv t0 = tcg_temp_local_new(TCG_TYPE_TL); |
1305 | 1305 | #if defined(TARGET_PPC64) |
1306 | 1306 | if (ctx->sf_mode) { |
1307 | - tcg_gen_movi_tl(t0, arg1); | |
1307 | + tcg_gen_mov_tl(t0, arg1); | |
1308 | 1308 | tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT64_MIN, l1); |
1309 | 1309 | } else |
1310 | 1310 | #endif | ... | ... |