Remove debug output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Matthijs Kooijman 2008-06-20 14:03:35 +00:00
parent c95e44b4e0
commit 1b492b2f8d

View 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();