From 0a7d07b87b9c3bc3c4ac9b14e0bab1734d0f8a85 Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Wed, 25 Feb 2015 21:30:19 +0000 Subject: [PATCH] [dwarfdump] Don't print meaningless pointer. CIE pointers were never filled in before, and printing the pointer is totally pointless anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230550 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/DWARF/DWARFDebugFrame.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp b/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp index aca560c4216..495f9b5105a 100644 --- a/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp +++ b/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) { -- 2.34.1