summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/LoopGenerators.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/CodeGen/LoopGenerators.cpp')
-rw-r--r--polly/lib/CodeGen/LoopGenerators.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp
index dbcaf563b60..230cb6369c8 100644
--- a/polly/lib/CodeGen/LoopGenerators.cpp
+++ b/polly/lib/CodeGen/LoopGenerators.cpp
@@ -42,8 +42,8 @@ Value *polly::createLoop(Value *LB, Value *UB, Value *Stride,
Builder.SetInsertPoint(HeaderBB);
// Use the type of upper and lower bound.
- assert(LB->getType() == UB->getType()
- && "Different types for upper and lower bound.");
+ assert(LB->getType() == UB->getType() &&
+ "Different types for upper and lower bound.");
IntegerType *LoopIVType = dyn_cast<IntegerType>(UB->getType());
assert(LoopIVType && "UB is not integer?");
OpenPOWER on IntegriCloud