diff options
| author | sowens99 <seanowens@comcast.net> | 2023-09-27 02:21:31 -0400 |
|---|---|---|
| committer | sowens99 <seanowens@comcast.net> | 2023-09-28 19:57:03 -0400 |
| commit | 60e331e2e11031fe10e78b85ae124f402bd3c684 (patch) | |
| tree | 3ae995d8f62e87285a77852c4656b41c9774b072 /Source/Core | |
| parent | f8445782bff425dd95a8c7ccba06769d9fb0adf0 (diff) | |
PowerPC: reduce location assert cost
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h | 2 |
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; } |
