X86: Fix the movfp microop.
--HG-- extra : convert_revision : 23829782a2802a97a05e4dfdb5dd38fbe4165a90
This commit is contained in:
parent
3e644b48bb
commit
06d2d54b57
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ let {{
|
||||||
SetStatus=False, dataSize="env.dataSize"):
|
SetStatus=False, dataSize="env.dataSize"):
|
||||||
super(Movfp, self).__init__(dest, src1, flags, \
|
super(Movfp, self).__init__(dest, src1, flags, \
|
||||||
spm, SetStatus, dataSize)
|
spm, SetStatus, dataSize)
|
||||||
code = 'FpDestReg.uqw = FpSrcReg2.uqw;'
|
code = 'FpDestReg.uqw = FpSrcReg1.uqw;'
|
||||||
else_code = 'FpDestReg.uqw = FpDestReg.uqw;'
|
else_code = 'FpDestReg.uqw = FpDestReg.uqw;'
|
||||||
cond_check = "checkCondition(ccFlagBits, src2)"
|
cond_check = "checkCondition(ccFlagBits, src2)"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue