diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2012-12-29 23:57:18 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2012-12-29 23:57:18 +0000 |
commit | ae2d83ec410b2959b7fa4bf5e3f9f9fdf8ef8b19 (patch) | |
tree | b2fff4aa17ba01f54f3d968cda9a9f9c1729b774 /polly/lib/CodeGen/LoopGenerators.cpp | |
parent | 1bb59b0dcfccdaada07e2d180d5929a2dd0b1493 (diff) | |
download | bcm5719-llvm-ae2d83ec410b2959b7fa4bf5e3f9f9fdf8ef8b19.tar.gz bcm5719-llvm-ae2d83ec410b2959b7fa4bf5e3f9f9fdf8ef8b19.zip |
Formatting: Break lines after binary operators such as '&&'
assert(Condition
&& "Text");
->
assert(Condition &&
"Text);
This aligns Polly with the style used in LLVM.
llvm-svn: 171242
Diffstat (limited to 'polly/lib/CodeGen/LoopGenerators.cpp')
-rw-r--r-- | polly/lib/CodeGen/LoopGenerators.cpp | 4 |
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?"); |