Change recurse depth limit to uint32 to fix warning.

llvm-svn: 155727
This commit is contained in:
David Blaikie 2012-04-27 19:30:32 +00:00
parent 4a5d29509f
commit 84e4b39995
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ static cl::opt<bool> EnablePRE("enable-pre",
static cl::opt<bool> EnableLoadPRE("enable-load-pre", cl::init(true));
// Maximum allowed recursion depth.
static cl::opt<int>
static cl::opt<uint32_t>
MaxRecurseDepth("max-recurse-depth", cl::Hidden, cl::init(1000), cl::ZeroOrMore,
cl::desc("Max recurse depth (default = 1000)"));