diff options
| author | Mat M <mathew1800@gmail.com> | 2018-05-29 21:01:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-29 21:01:47 -0400 |
| commit | 1825e231a35399c86c65fa328871d58cf987eb14 (patch) | |
| tree | 553420a6f99cd5aa3995adedf3cef4d72021c6a7 /Source/Core | |
| parent | 7f6ae322ea7fe9127ab0d0dc4c0849f641c323ea (diff) | |
| parent | bde65d8b42978da2f4de9dd306eda3978c5d6795 (diff) | |
Merge pull request #7013 from degasus/double2single
Jit64: Fix MORE_ACCURATE_DOUBLETOSINGLE.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp index e00f3ada1a..8c437ac5f6 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp +++ b/Source/Core/Core/PowerPC/Jit64Common/EmuCodeBlock.cpp @@ -885,6 +885,8 @@ alignas(16) static const __m128i double_sign_bit = _mm_set_epi64x(0, 0x800000000 alignas(16) static const __m128i double_explicit_top_bit = _mm_set_epi64x(0, 0x0010000000000000); alignas(16) static const __m128i double_top_two_bits = _mm_set_epi64x(0, 0xc000000000000000); alignas(16) static const __m128i double_bottom_bits = _mm_set_epi64x(0, 0x07ffffffe0000000); +alignas(16) static const __m128i double_qnan_bit = _mm_set_epi64x(0xffffffffffffffff, + 0xfff7ffffffffffff); // This is the same algorithm used in the interpreter (and actual hardware) // The documentation states that the conversion of a double with an outside the |
