PowerPC: reduce location assert cost

This commit is contained in:
sowens99 2023-09-27 02:21:31 -04:00
parent f8445782bf
commit 60e331e2e1

View File

@ -51,7 +51,7 @@ public:
if (location->IsImm())
return LocationType::SpeculativeImmediate;
ASSERT(location == default_location);
ASSERT(*location == default_location);
return LocationType::Default;
}