From: Chris Lattner Date: Mon, 12 Apr 2004 04:06:56 +0000 (+0000) Subject: Stop printing Function* X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=85eb157d966c6015262ec0d7f0353c7f416dee7b;p=oota-llvm.git Stop printing Function* git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12857 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp index 325631a7922..808d3930b60 100644 --- a/lib/Transforms/IPO/Inliner.cpp +++ b/lib/Transforms/IPO/Inliner.cpp @@ -105,7 +105,7 @@ bool Inliner::runOnSCC(const std::vector &SCC) { if (Callee->use_empty() && Callee != Caller && (Callee->hasInternalLinkage() || Callee->hasLinkOnceLinkage())) { DEBUG(std::cerr << " -> Deleting dead function: " - << (void*)Callee << Callee->getName() << "\n"); + << Callee->getName() << "\n"); std::set::iterator I = SCCFunctions.find(Callee); if (I != SCCFunctions.end()) // Remove function from this SCC. SCCFunctions.erase(I);