diff options
author | RSDuck <RSDuck@users.noreply.github.com> | 2021-08-31 08:13:22 +0200 |
---|---|---|
committer | RSDuck <RSDuck@users.noreply.github.com> | 2021-08-31 08:13:22 +0200 |
commit | 55ec724fee5cdc5ed91226f3e4f1aad11a3bcfb2 (patch) | |
tree | bae09a849ad52a68a473032830c0550ac36e18c3 /src/ARMJIT_A64 | |
parent | 8d2746e517e61744ed320105be5105ce3025c203 (diff) |
more fixes for literal invalidation
Diffstat (limited to 'src/ARMJIT_A64')
-rw-r--r-- | src/ARMJIT_A64/ARMJIT_LoadStore.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ARMJIT_A64/ARMJIT_LoadStore.cpp b/src/ARMJIT_A64/ARMJIT_LoadStore.cpp index 8aa1409..d9b7a68 100644 --- a/src/ARMJIT_A64/ARMJIT_LoadStore.cpp +++ b/src/ARMJIT_A64/ARMJIT_LoadStore.cpp @@ -67,7 +67,6 @@ bool Compiler::Comp_MemLoadLiteral(int size, bool signExtend, int rd, u32 addr) int invalidLiteralIdx = InvalidLiterals.Find(localAddr); if (invalidLiteralIdx != -1) { - InvalidLiterals.Remove(invalidLiteralIdx); return false; } |