diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-11-12 20:10:09 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-11-12 20:10:09 +0000 |
commit | a11b32b7e5f959020a8b4b05916895e5c97016ef (patch) | |
tree | 8a7513d8c04d60f8675795598503ad4a7b550837 /llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp | |
parent | 73a6bca32b9943d2b0298afe998a8cfc4363ce4b (diff) | |
download | bcm5719-llvm-a11b32b7e5f959020a8b4b05916895e5c97016ef.tar.gz bcm5719-llvm-a11b32b7e5f959020a8b4b05916895e5c97016ef.zip |
[COFF] Make it clearer that the symbols subsection holds function display name rather than just name
llvm-svn: 221812
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp b/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp index 5f7850fdec1..96cf55e7d32 100644 --- a/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp @@ -215,7 +215,7 @@ void WinCodeViewLineTables::emitDebugInfoForFunction(const Function *GV) { Asm->OutStreamer.EmitCOFFSecRel32(Fn); Asm->OutStreamer.EmitCOFFSectionIndex(Fn); Asm->EmitInt8(0); - // Emit the function name as a null-terminated string. + // Emit the function display name as a null-terminated string. Asm->OutStreamer.EmitBytes(FuncName); Asm->EmitInt8(0); Asm->OutStreamer.EmitLabel(ProcSegmentEnd); |