mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-10 16:38:14 +01:00
microinstruction: Make use_count private (#53)
Makes the operation a part of the direct interface.
This commit is contained in:
parent
3621a925b2
commit
de1f831d79
6 changed files with 31 additions and 32 deletions
|
|
@ -37,7 +37,7 @@ void VerificationPass(const IR::Block& block) {
|
|||
}
|
||||
|
||||
for (const auto& pair : actual_uses) {
|
||||
ASSERT(pair.first->use_count == pair.second);
|
||||
ASSERT(pair.first->UseCount() == pair.second);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue