1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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 ea180c8076
commit efb3167dd8

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