From f13938382c003516e870c1162f962b01619c99a6 Mon Sep 17 00:00:00 2001 From: Aaron Smith Date: Mon, 26 Mar 2018 22:53:38 +0000 Subject: [PATCH] [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 --- llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp b/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp index 0f763cd..7d6cb25 100644 --- a/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp +++ b/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp @@ -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; } } -- 2.7.4