Fix disassembly of DILexicalBlock

This commit is contained in:
baldurk
2020-06-09 16:48:03 +01:00
parent 340bf9f805
commit 26d4244d25
@@ -546,9 +546,9 @@ rdcstr DILexicalBlock::toString() const
{
rdcstr ret = "!DILexicalBlock(";
if(scope)
ret += StringFormat::Fmt(", scope: %s", scope->refString().c_str());
ret += StringFormat::Fmt("scope: %s", scope->refString().c_str());
else
ret += ", scope: null";
ret += "scope: null";
if(file)
ret += StringFormat::Fmt(", file: %s", file->refString().c_str());
if(line)