Remove debug output.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 20 Jun 2008 14:03:35 +0000 (14:03 +0000)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 20 Jun 2008 14:03:35 +0000 (14:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52535 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/DeadArgumentElimination.cpp

index 4057cebc423827bba638a29d2b7e10153e586be6..36be6f8f4dd737b85bd8ef3c6323cbb6ec653d42 100644 (file)
@@ -673,10 +673,6 @@ bool DAE::RemoveDeadStuffFromFunction(Function *F) {
   while (!F->use_empty()) {
     CallSite CS = CallSite::get(F->use_back());
     Instruction *Call = CS.getInstruction();
-    if (!Call) {
-      DOUT << "Old: " << *FTy << "\n";
-      DOUT << "New: " << *NFTy << "\n";
-    }
 
     ParamAttrsVec.clear();
     const PAListPtr &CallPAL = CS.getParamAttrs();