Merge pull request #12206 from malleoz/ppc_reg_location_assert_improvement

PowerPC: reduce location assert cost
This commit is contained in:
Admiral H. Curtiss 2023-09-29 20:08:05 +02:00 committed by GitHub
commit 7c995000ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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