mirror of https://gitee.com/openkylin/qemu.git
target-mips: fix commit 7046
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7095 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
bb928dbef2
commit
30a3848b77
|
@ -6951,7 +6951,7 @@ static void gen_farith (DisasContext *ctx, uint32_t op1,
|
|||
check_cp1_64bitmode(ctx);
|
||||
{
|
||||
int l1 = gen_new_label();
|
||||
TCGv_i32 fp0;
|
||||
TCGv_i64 fp0;
|
||||
|
||||
if (ft != 0)
|
||||
tcg_gen_brcondi_tl(TCG_COND_NE, cpu_gpr[ft], 0, l1);
|
||||
|
@ -6967,7 +6967,7 @@ static void gen_farith (DisasContext *ctx, uint32_t op1,
|
|||
check_cp1_64bitmode(ctx);
|
||||
{
|
||||
int l1 = gen_new_label();
|
||||
TCGv_i32 fp0;
|
||||
TCGv_i64 fp0;
|
||||
|
||||
if (ft != 0) {
|
||||
tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[ft], 0, l1);
|
||||
|
|
Loading…
Reference in New Issue