mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-25 16:54:40 +01:00
Common: Add an intrusive list implementation; remove use of boost::intrusive::list.
This commit is contained in:
parent
9264e2e04c
commit
94b99f5949
6 changed files with 289 additions and 7 deletions
|
|
@ -19,7 +19,7 @@ void DeadCodeElimination(IR::Block& block) {
|
|||
// We iterate over the instructions in reverse order.
|
||||
// This is because removing an instruction reduces the number of uses for earlier instructions.
|
||||
|
||||
if (block.instructions.empty()) {
|
||||
if (block.instructions.IsEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue