forked from OSchip/llvm-project
Add default OptLevel value for createSimpleLoopUnrollPass to fix the build break introduced by r295538. (NFC)
llvm-svn: 295542
This commit is contained in:
parent
947719bed1
commit
b70afdb5e8
|
@ -185,7 +185,7 @@ Pass *createLoopUnrollPass(int OptLevel = 2, int Threshold = -1, int Count = -1,
|
|||
int AllowPartial = -1, int Runtime = -1,
|
||||
int UpperBound = -1);
|
||||
// Create an unrolling pass for full unrolling that uses exact trip count only.
|
||||
Pass *createSimpleLoopUnrollPass(int OptLevel);
|
||||
Pass *createSimpleLoopUnrollPass(int OptLevel = 2);
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue