[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
This commit is contained in:
Frederic Riss 2015-02-25 21:30:19 +00:00
parent 4d69c45699
commit 0a7d07b87b

View 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) {