mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-02-06 15:24:16 +01:00
IR::DumpBlock: Incorrect use of std::map::at
This commit is contained in:
parent
4414ec5bc8
commit
deb5e2c10d
|
|
@ -189,7 +189,7 @@ std::string DumpBlock(const IR::Block& block) {
|
|||
}
|
||||
|
||||
ret += "\n";
|
||||
inst_to_index.at(&*inst) = index++;
|
||||
inst_to_index[&*inst] = index++;
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Reference in a new issue