From 85eb157d966c6015262ec0d7f0353c7f416dee7b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 12 Apr 2004 04:06:56 +0000 Subject: [PATCH] Stop printing Function* git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12857 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/Inliner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);