|
From: <sv...@va...> - 2014-10-09 01:02:04
|
Author: petarj
Date: Thu Oct 9 02:01:57 2014
New Revision: 2971
Log:
mips: use putDReg/getDReg for ceil.l.d
For better clarity and consistency, use putDReg/getDReg instead of
putFReg/getFReg for ceil.l.d.
Non-functional change.
Modified:
trunk/priv/guest_mips_toIR.c
Modified: trunk/priv/guest_mips_toIR.c
==============================================================================
--- trunk/priv/guest_mips_toIR.c (original)
+++ trunk/priv/guest_mips_toIR.c Thu Oct 9 02:01:57 2014
@@ -13371,8 +13371,8 @@
DIP("ceil.l.d %d, %d", fd, fs);
if (fp_mode64) {
calculateFCSR(fs, 0, CEILLD, False, 1);
- putFReg(fd, binop(Iop_RoundF64toInt, mkU32(0x2),
- getFReg(fs)));
+ putDReg(fd, binop(Iop_RoundF64toInt, mkU32(0x2),
+ getDReg(fs)));
} else {
ILLEGAL_INSTRUCTON;
}
|