diff options
author | Reid Kleckner <rnk@google.com> | 2015-12-15 01:23:55 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-12-15 01:23:55 +0000 |
commit | 7c0c0c0501806ce287dd2494b51f76f7a3ee5737 (patch) | |
tree | 25377928406235eeec3f1b9f00aaad1d92f1b00f /llvm/tools | |
parent | 750c9e0457d9148f27833a1d69a13cfa65226bbe (diff) | |
download | bcm5719-llvm-7c0c0c0501806ce287dd2494b51f76f7a3ee5737.tar.gz bcm5719-llvm-7c0c0c0501806ce287dd2494b51f76f7a3ee5737.zip |
[llvm-readobj] s/FunctionName/LinkageName/ for codeview dumping
The symbol being printed in this field comes from the main symbol table,
not 0xF1 subsection. Use LinkageName to make that a lot clearer.
llvm-svn: 255596
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-readobj/COFFDumper.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/tools/llvm-readobj/COFFDumper.cpp b/llvm/tools/llvm-readobj/COFFDumper.cpp index 43c4486fafc..5b4129a10c5 100644 --- a/llvm/tools/llvm-readobj/COFFDumper.cpp +++ b/llvm/tools/llvm-readobj/COFFDumper.cpp @@ -531,18 +531,18 @@ void COFFDumper::printCodeViewDebugInfo(const SectionRef &Section) { return; } - StringRef FunctionName; + StringRef LinkageName; error(resolveSymbolName(Obj->getCOFFSection(Section), Offset, - FunctionName)); - W.printString("FunctionName", FunctionName); - if (FunctionLineTables.count(FunctionName) != 0) { + LinkageName)); + W.printString("LinkageName", LinkageName); + if (FunctionLineTables.count(LinkageName) != 0) { // Saw debug info for this function already? error(object_error::parse_failed); return; } - FunctionLineTables[FunctionName] = Contents; - FunctionNames.push_back(FunctionName); + FunctionLineTables[LinkageName] = Contents; + FunctionNames.push_back(LinkageName); break; } case COFF::DEBUG_STRING_TABLE_SUBSECTION: @@ -579,7 +579,7 @@ void COFFDumper::printCodeViewDebugInfo(const SectionRef &Section) { for (unsigned I = 0, E = FunctionNames.size(); I != E; ++I) { StringRef Name = FunctionNames[I]; ListScope S(W, "FunctionLineTable"); - W.printString("FunctionName", Name); + W.printString("LinkageName", Name); DataExtractor DE(FunctionLineTables[Name], true, 4); uint32_t Offset = 6; // Skip relocations. |