diff options
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/lli/lli.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp index e3f585439bc..76e1eb19771 100644 --- a/llvm/tools/lli/lli.cpp +++ b/llvm/tools/lli/lli.cpp @@ -10,13 +10,13 @@  #include "Interpreter.h"  #include "Support/CommandLine.h" -static cl::opt<string> +static cl::opt<std::string>  InputFile(cl::desc("<input bytecode>"), cl::Positional, cl::init("-"));  static cl::list<std::string>  InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>...")); -static cl::opt<string> +static cl::opt<std::string>  MainFunction ("f", cl::desc("Function to execute"), cl::init("main"),                cl::value_desc("function name")); | 

