[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:
Aaron Smith 2018-03-26 22:53:38 +00:00
parent 88911686c8
commit f13938382c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}