diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-10-09 13:08:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-09 13:08:53 +0200 |
| commit | 4c7fcf58b002265906670995ddffe2c0bc2a16bf (patch) | |
| tree | 74c7695efc791b92bfa5cb11b36b0a1f7f5153f0 /Source/Core | |
| parent | 6cf99195c645f54d54c72322ad0312a0e56bc985 (diff) | |
| parent | 0b1fdee289173257e1336684a159a23e4766f2b5 (diff) | |
Merge pull request #11140 from JosJuice/jit64-inaccurate-single-fprf
Jit64: Fix single FPRF when !jo.accurateSinglePrecision
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp index 17c52c42cf..1d77ceda1b 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp @@ -80,7 +80,7 @@ void Jit64::FinalizeSingleResult(X64Reg output, const OpArg& input, bool packed, MOVAPD(output, input); } - SetFPRFIfNeeded(input, true); + SetFPRFIfNeeded(input, false); } } |
