mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-29 18:54:47 +01:00
get_set_elimination_pass: Replace decltype with direct type retrieval (#9)
This commit is contained in:
parent
1e781d911a
commit
d16badbc04
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ namespace Dynarmic {
|
|||
namespace Optimization {
|
||||
|
||||
void GetSetElimination(IR::Block& block) {
|
||||
using Iterator = decltype(block.begin());
|
||||
using Iterator = IR::Block::iterator;
|
||||
struct RegisterInfo {
|
||||
IR::Value register_value;
|
||||
bool set_instruction_present = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue