summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 16:39:56 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 16:39:56 +0000
commitdb14500d889663ef699fc4ddd3ad1d48ace82285 (patch)
treec69441187af206982cfcced4754aabd7973c765f /tools
parentc7a0985995631025fbe9a4fe9fc435c3ba7387e4 (diff)
downloadllvm-db14500d889663ef699fc4ddd3ad1d48ace82285.tar.gz
llvm-db14500d889663ef699fc4ddd3ad1d48ace82285.tar.bz2
llvm-db14500d889663ef699fc4ddd3ad1d48ace82285.tar.xz
Namespace correctness is good
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3088 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/lli/lli.cpp4
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"));