diff options
author | Frederic Riss <friss@apple.com> | 2015-02-25 21:30:19 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2015-02-25 21:30:19 +0000 |
commit | 2fe0e54fd6984c08c9b00af88dae5fd1a69578c0 (patch) | |
tree | 05fd5154cdabc7fbb4765ff09fccc96a65e5fa2c /llvm/lib/DebugInfo | |
parent | 056ad058bbae36ae70fbbc6cee5744dccadfbe93 (diff) | |
download | bcm5719-llvm-2fe0e54fd6984c08c9b00af88dae5fd1a69578c0.tar.gz bcm5719-llvm-2fe0e54fd6984c08c9b00af88dae5fd1a69578c0.zip |
[dwarfdump] Don't print meaningless pointer.
CIE pointers were never filled in before, and printing the pointer
is totally pointless anyway.
llvm-svn: 230550
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp index aca560c4216..495f9b5105a 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp @@ -254,9 +254,6 @@ public: (int32_t)LinkedCIEOffset, (uint32_t)InitialLocation, (uint32_t)InitialLocation + (uint32_t)AddressRange); - if (LinkedCIE) { - OS << format("%p\n", LinkedCIE); - } } static bool classof(const FrameEntry *FE) { |