diff options
author | Reid Kleckner <rnk@google.com> | 2016-02-02 17:41:18 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-02-02 17:41:18 +0000 |
commit | 1fcd610c9499d8f1eb42f339926ed17ec6d98ddd (patch) | |
tree | b80a02a7939d74d6657ce1523b272f81ea84b403 /llvm/tools/llvm-readobj | |
parent | 7d6b924df841faff6893207044cc57b02464b255 (diff) | |
download | bcm5719-llvm-1fcd610c9499d8f1eb42f339926ed17ec6d98ddd.tar.gz bcm5719-llvm-1fcd610c9499d8f1eb42f339926ed17ec6d98ddd.zip |
[codeview] Wire up the .cv_inline_linetable directive
This directive emits the binary annotations that describe line and code
deltas in inlined call sites. Single-stepping through inlined frames in
windbg now works.
llvm-svn: 259535
Diffstat (limited to 'llvm/tools/llvm-readobj')
-rw-r--r-- | llvm/tools/llvm-readobj/COFFDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-readobj/COFFDumper.cpp b/llvm/tools/llvm-readobj/COFFDumper.cpp index 09eca62ee59..8c308f60592 100644 --- a/llvm/tools/llvm-readobj/COFFDumper.cpp +++ b/llvm/tools/llvm-readobj/COFFDumper.cpp @@ -1423,7 +1423,7 @@ void COFFDumper::printCodeViewSymbolsSubsection(StringRef Subsection, W.printHex("ChangeCodeOffset", GetCompressedAnnotation()); break; case ChangeCodeLength: - W.printNumber("ChangeCodeLength", GetCompressedAnnotation()); + W.printHex("ChangeCodeLength", GetCompressedAnnotation()); break; case ChangeFile: printFileNameForOffset("ChangeFile", GetCompressedAnnotation()); |