Skip to content

Commit 9816c23

Browse files
committed
remove debugging printing
1 parent 92c5ac0 commit 9816c23

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/IR/PassManagerImpl.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "llvm/IR/PassInstrumentation.h"
2020
#include "llvm/IR/PassManager.h"
2121
#include "llvm/Support/CommandLine.h"
22-
#include "llvm/Support/Debug.h"
2322
#include "llvm/Support/PrettyStackTrace.h"
2423

2524
extern llvm::cl::opt<bool> UseNewDbgInfoFormat;
@@ -80,7 +79,7 @@ PreservedAnalyses PassManager<IRUnitT, AnalysisManagerT, ExtraArgTs...>::run(
8079
continue;
8180

8281
PreservedAnalyses PassPA = Pass->run(IR, AM, ExtraArgs...);
83-
llvm::dbgs() << "Running " << Pass->name() << "\n";
82+
8483
// Update the analysis manager as each pass runs and potentially
8584
// invalidates analyses.
8685
AM.invalidate(IR, PassPA);

0 commit comments

Comments
 (0)