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…
Reference in a new issue