summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2023-09-29 20:08:05 +0200
committerGitHub <noreply@github.com>2023-09-29 20:08:05 +0200
commit7c995000ae15b757e0faa31fe063612afbb0ab0c (patch)
tree251e64ed675544f88b4a713a6fe1909d8972f432 /Source/Core
parenta310b32525f2ddc46740b4b184c31b89ff4e8645 (diff)
parent60e331e2e11031fe10e78b85ae124f402bd3c684 (diff)
Merge pull request #12206 from malleoz/ppc_reg_location_assert_improvement
PowerPC: reduce location assert cost
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h b/Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h
index f9f5d5de70..acf5480abb 100644
--- a/Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h
+++ b/Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h
@@ -51,7 +51,7 @@ public:
if (location->IsImm())
return LocationType::SpeculativeImmediate;
- ASSERT(location == default_location);
+ ASSERT(*location == default_location);
return LocationType::Default;
}