diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2013-03-18 08:45:33 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2013-03-18 08:45:33 -0500 |
| commit | 7d74293170b01ac17431be7c80e118e8d4e3f668 (patch) | |
| tree | 2e032d9c3b593b3fa116bd9a5c1bb82d0317c499 /Source | |
| parent | 12f5f102c7a1faab89676eda9bf04ed9ffe5bc27 (diff) | |
Fix a typo in ArmEmitter noticed by LionCash.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Common/Src/ArmEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/ArmEmitter.cpp b/Source/Core/Common/Src/ArmEmitter.cpp index c3c9f0d0f8..820c30d68d 100644 --- a/Source/Core/Common/Src/ArmEmitter.cpp +++ b/Source/Core/Common/Src/ArmEmitter.cpp @@ -903,7 +903,7 @@ void ARMXEmitter::WriteVFPDataOp(u32 Op, ARMReg Vd, ARMReg Vn, ARMReg Vm) bool double_reg = Vd >= D0 && Vd < Q0; VFPEnc enc = VFPOps[Op][quad_reg]; - if (enc.opc1 == -1 && enc.opc1 == -1) + if (enc.opc1 == -1 && enc.opc2 == -1) _assert_msg_(DYNA_REC, false, "%s does not support %s", VFPOpNames[Op], quad_reg ? "NEON" : "VFP"); u32 VdEnc = EncodeVd(Vd); u32 VnEnc = EncodeVn(Vn); |
