Add default OptLevel value for createSimpleLoopUnrollPass to fix the build break introduced by r295538. (NFC)

llvm-svn: 295542
This commit is contained in:
Dehao Chen 2017-02-18 06:42:16 +00:00
parent 947719bed1
commit b70afdb5e8
1 changed files with 1 additions and 1 deletions

View File

@ -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);
//===----------------------------------------------------------------------===//
//