[Attributor][NFC] Remove unnecessary debug output
authorHideto Ueno <uenoku.tokotoko@gmail.com>
Wed, 17 Jul 2019 21:11:02 +0000 (21:11 +0000)
committerHideto Ueno <uenoku.tokotoko@gmail.com>
Wed, 17 Jul 2019 21:11:02 +0000 (21:11 +0000)
llvm-svn: 366373

llvm/lib/Transforms/IPO/Attributor.cpp

index 2f31b39..2a52c6b 100644 (file)
@@ -1332,7 +1332,6 @@ bool Attributor::checkForAllCallSites(Function &F,
   for (const Use &U : F.uses()) {
 
     CallSite CS(U.getUser());
-    dbgs() << *CS.getInstruction() << "\n";
     if (!CS || !CS.isCallee(&U) || !CS.getCaller()->hasExactDefinition()) {
       if (!RequireAllCallSites)
         continue;