basic_block: Allow printing of invalid instruction pointers
This commit is contained in:
parent
07108246cf
commit
ebddf6cca0
1 changed files with 4 additions and 1 deletions
|
@ -176,7 +176,10 @@ std::string DumpBlock(const IR::Block& block) {
|
||||||
if (arg.IsEmpty()) {
|
if (arg.IsEmpty()) {
|
||||||
return "<null>";
|
return "<null>";
|
||||||
} else if (!arg.IsImmediate()) {
|
} else if (!arg.IsImmediate()) {
|
||||||
return fmt::format("%{}", inst_to_index.at(arg.GetInst()));
|
if (const auto iter = inst_to_index.find(arg.GetInst()); iter != inst_to_index.end()) {
|
||||||
|
return fmt::format("%{}", iter->second);
|
||||||
|
}
|
||||||
|
return fmt::format("%<unknown inst {:016x}>", reinterpret_cast<u64>(arg.GetInst()));
|
||||||
}
|
}
|
||||||
switch (arg.GetType()) {
|
switch (arg.GetType()) {
|
||||||
case Type::U1:
|
case Type::U1:
|
||||||
|
|
Loading…
Reference in a new issue