diff options
Diffstat (limited to 'polly/include/polly/CodeGen/LoopGenerators.h')
| -rw-r--r-- | polly/include/polly/CodeGen/LoopGenerators.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/polly/include/polly/CodeGen/LoopGenerators.h b/polly/include/polly/CodeGen/LoopGenerators.h index b9a80414e8c..68a621780c2 100644 --- a/polly/include/polly/CodeGen/LoopGenerators.h +++ b/polly/include/polly/CodeGen/LoopGenerators.h @@ -36,10 +36,11 @@ using namespace llvm; /// @param Builder The builder used to create the loop. /// @param P A pointer to the pass that uses this function. It is used /// to update analysis information. -/// +/// @param Predicate The predicate used to generate the upper loop bound. /// @return Value* The newly created induction variable for this loop. Value *createLoop(Value *LowerBound, Value *UpperBound, Value *Stride, - IRBuilder<> &Builder, Pass *P, BasicBlock *&AfterBlock); + IRBuilder<> &Builder, Pass *P, BasicBlock *&AfterBlock, + ICmpInst::Predicate Predicate); class OMPGenerator { public: |

