[dwarfdump] Don't print meaningless pointer.
authorFrederic Riss <friss@apple.com>
Wed, 25 Feb 2015 21:30:19 +0000 (21:30 +0000)
committerFrederic Riss <friss@apple.com>
Wed, 25 Feb 2015 21:30:19 +0000 (21:30 +0000)
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

index aca560c4216a7ce069caf78dcc8306da43bc6d50..495f9b5105ac1b27dbbb272ed02ff66ef7d61a0a 100644 (file)
@@ -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) {