diff options
-rw-r--r-- | tools/lli/lli.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index e3f585439b..76e1eb1977 100644 --- a/tools/lli/lli.cpp +++ b/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")); |