Fixing option for JSON benchmark broken since the change to size_t.

llvm-svn: 146970
This commit is contained in:
Manuel Klimek 2011-12-20 10:34:29 +00:00
parent a89747dd1e
commit 860d978ef6
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ Verify("verify", llvm::cl::desc(
"Run a quick verification useful for regression testing"),
llvm::cl::init(false));
static llvm::cl::opt<size_t>
static llvm::cl::opt<unsigned>
MemoryLimitMB("memory-limit", llvm::cl::desc(
"Do not use more megabytes of memory"),
llvm::cl::init(1000));