From 3301a347b3811d131c379e8457d3190df9ed31cd Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 12 Sep 2015 11:56:33 -0700 Subject: [PATCH] arm64: Dumb typo, oops. --- Core/MIPS/ARM64/Arm64CompVFPU.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/MIPS/ARM64/Arm64CompVFPU.cpp b/Core/MIPS/ARM64/Arm64CompVFPU.cpp index ebe5f692a8..dec8164b89 100644 --- a/Core/MIPS/ARM64/Arm64CompVFPU.cpp +++ b/Core/MIPS/ARM64/Arm64CompVFPU.cpp @@ -662,7 +662,7 @@ namespace MIPSComp { SetJumpTarget(unordered); // Move to integer registers, it'll be easier. Or maybe there's a simd way? fp.FMOV(SCRATCH1, fpr.V(sregs[i])); - fp.FMOV(SCRATCH2, fpr.V(sregs[i])); + fp.FMOV(SCRATCH2, fpr.V(tregs[i])); // And together to find if both have negative set. TST(SCRATCH1, SCRATCH2); FixupBranch cmpPositive = B(CC_PL); @@ -690,7 +690,7 @@ namespace MIPSComp { SetJumpTarget(unordered); // Move to integer registers, it'll be easier. Or maybe there's a simd way? fp.FMOV(SCRATCH1, fpr.V(sregs[i])); - fp.FMOV(SCRATCH2, fpr.V(sregs[i])); + fp.FMOV(SCRATCH2, fpr.V(tregs[i])); // And together to find if both have negative set. TST(SCRATCH1, SCRATCH2); FixupBranch cmpPositive = B(CC_PL);