Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12206 from malleoz/ppc_reg_location_assert_improv…
…ement

PowerPC: reduce location assert cost
  • Loading branch information
AdmiralCurtiss committed Sep 29, 2023
2 parents a310b32 + 60e331e commit 7c99500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64/RegCache/CachedReg.h
Expand Up @@ -51,7 +51,7 @@ class PPCCachedReg
if (location->IsImm())
return LocationType::SpeculativeImmediate;

ASSERT(location == default_location);
ASSERT(*location == default_location);
return LocationType::Default;
}

Expand Down

0 comments on commit 7c99500

Please sign in to comment.