diff options
| author | Tilka <tilkax@gmail.com> | 2025-08-19 19:40:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-19 19:40:49 +0100 |
| commit | 2696e053eab292cc9f8401a92d44b79f9ae82b7a (patch) | |
| tree | 43c737ffe3e45ef6f3974891bebcf864b2bc0909 | |
| parent | 37f5ae4209548d85c6f1d9f9b34eb228ebbb5c31 (diff) | |
| parent | 84b5a73b2a256b03f13552fe42aba174204eaad7 (diff) | |
Merge pull request #13887 from Tilka/unused_sign_bit
Jit64: drop unused constant
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp b/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp index 94e7f99423..a08aaad0f4 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp +++ b/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp @@ -27,7 +27,6 @@ using namespace Gen; alignas(16) static const __m128i double_fraction = _mm_set_epi64x(0, 0x000fffffffffffff); -alignas(16) static const __m128i double_sign_bit = _mm_set_epi64x(0, 0x8000000000000000); 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); |
