Merge pull request #11148 from JosJuice/jitarm64-remove-cdts-inst

JitArm64: Remove unnecessary instruction from ConvertDoubleToSingle
This commit is contained in:
Markus Wick 2022-10-22 10:10:23 +02:00 committed by GitHub
commit 5c7b5514ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -356,7 +356,6 @@ void JitArm64::GenerateConvertDoubleToSingle()
LSR(ARM64Reg::X1, ARM64Reg::X0, 32);
FixupBranch denormal = B(CCFlags::CC_LS);
AND(ARM64Reg::X1, ARM64Reg::X1, LogicalImm(0xc0000000, 64));
BFXIL(ARM64Reg::X1, ARM64Reg::X0, 29, 30);
RET();