[DeLICM] Use opt<int>.

There is no template specialization for cl::parser<unsigned long> such
that parsing an cl::opt<unsigned long> command line argument will fail.
Use opt<int> instead which has an associated parser.

llvm-svn: 295832
This commit is contained in:
Michael Kruse 2017-02-22 13:48:18 +00:00
parent 3b97067ae8
commit 91cdafb86f
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ using namespace llvm;
namespace {
cl::opt<unsigned long>
cl::opt<int>
DelicmMaxOps("polly-delicm-max-ops",
cl::desc("Maximum number of isl operations to invest for "
"lifetime analysis; 0=no limit"),