summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polly/lib/CodeGen/CodeGeneration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp
index a44672575fc..f215e5774ed 100644
--- a/polly/lib/CodeGen/CodeGeneration.cpp
+++ b/polly/lib/CodeGen/CodeGeneration.cpp
@@ -789,7 +789,7 @@ void ClastStmtCodeGen::codegenForGPGPU(const clast_for *F) {
// fixed later.
Function *FN = Builder.GetInsertBlock()->getParent();
for (Value *BaseAddr : Values)
- for (BasicBlock *BB: *FN)
+ for (BasicBlock *BB : *FN)
for (Instruction *Inst : *BB)
Inst->replaceUsesOfWith(BaseAddr, ValueMap[BaseAddr]);
Builder.SetInsertPoint(AfterLoop);
OpenPOWER on IntegriCloud