forked from OSchip/llvm-project
[DebugInfoPDB] Print the method name along with the variant value
Before this change, using dumpProperties() with PDBSymbolData would look like this: get_locationType: 3 1 After this change: get_locationType: 3 get_value: 1 llvm-svn: 328590
This commit is contained in:
parent
88911686c8
commit
f13938382c
|
@ -180,7 +180,7 @@ void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name,
|
|||
OS << "\n";
|
||||
OS.indent(Indent);
|
||||
Variant V = VariantFromVARIANT(Value);
|
||||
OS << V;
|
||||
OS << Name << ": " << V;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue