Merge pull request #11140 from JosJuice/jit64-inaccurate-single-fprf

Jit64: Fix single FPRF when !jo.accurateSinglePrecision
This commit is contained in:
Admiral H. Curtiss 2022-10-09 13:08:53 +02:00 committed by GitHub
commit 4c7fcf58b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ void Jit64::FinalizeSingleResult(X64Reg output, const OpArg& input, bool packed,
MOVAPD(output, input);
}
SetFPRFIfNeeded(input, true);
SetFPRFIfNeeded(input, false);
}
}