]> Git Repo - qemu.git/commitdiff
Fix operands of RECIP2.S and RECIP2.PS
authorRichard Sandiford <[email protected]>
Mon, 27 Aug 2012 08:50:38 +0000 (09:50 +0100)
committerAurelien Jarno <[email protected]>
Mon, 27 Aug 2012 10:03:17 +0000 (12:03 +0200)
Read the second input operand of RECIP2.S and RECIP2.PS from FT rather
than FD.  RECIP2.D is already correct.

Signed-off-by: Richard Sandiford <[email protected]>
Signed-off-by: Aurelien Jarno <[email protected]>
target-mips/translate.c

index d643676e581a3a352f0c0559021a4e98b2c4c463..2589f63b35e27b89320f1623b8ec07d03fe1f97b 100644 (file)
@@ -6805,7 +6805,7 @@ static void gen_farith (DisasContext *ctx, enum fopcode op1,
             TCGv_i32 fp1 = tcg_temp_new_i32();
 
             gen_load_fpr32(fp0, fs);
-            gen_load_fpr32(fp1, fd);
+            gen_load_fpr32(fp1, ft);
             gen_helper_float_recip2_s(fp0, fp0, fp1);
             tcg_temp_free_i32(fp1);
             gen_store_fpr32(fp0, fd);
@@ -7543,7 +7543,7 @@ static void gen_farith (DisasContext *ctx, enum fopcode op1,
             TCGv_i64 fp1 = tcg_temp_new_i64();
 
             gen_load_fpr64(ctx, fp0, fs);
-            gen_load_fpr64(ctx, fp1, fd);
+            gen_load_fpr64(ctx, fp1, ft);
             gen_helper_float_recip2_ps(fp0, fp0, fp1);
             tcg_temp_free_i64(fp1);
             gen_store_fpr64(ctx, fp0, fd);
This page took 0.040642 seconds and 4 git commands to generate.