summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/CodegenCleanup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/CodeGen/CodegenCleanup.cpp')
-rw-r--r--polly/lib/CodeGen/CodegenCleanup.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/polly/lib/CodeGen/CodegenCleanup.cpp b/polly/lib/CodeGen/CodegenCleanup.cpp
index efa8ec10376..2e54dfd4dda 100644
--- a/polly/lib/CodeGen/CodegenCleanup.cpp
+++ b/polly/lib/CodeGen/CodegenCleanup.cpp
@@ -119,12 +119,13 @@ public:
virtual bool runOnFunction(llvm::Function &F) override {
if (!F.hasFnAttribute("polly-optimized")) {
- DEBUG(dbgs() << F.getName()
- << ": Skipping cleanup because Polly did not optimize it.");
+ LLVM_DEBUG(
+ dbgs() << F.getName()
+ << ": Skipping cleanup because Polly did not optimize it.");
return false;
}
- DEBUG(dbgs() << F.getName() << ": Running codegen cleanup...");
+ LLVM_DEBUG(dbgs() << F.getName() << ": Running codegen cleanup...");
return FPM->run(F);
}
//@}
OpenPOWER on IntegriCloud