summaryrefslogtreecommitdiffstats
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
commit6d044b588bc31cf186bc7706730e29650042b2fb (patch)
treedc70991476dba692d2e3c116724c71214cbf80b5
parent64a6727d02cd12b1ae85e50b236cfc17b6dd3ee3 (diff)
downloadbcm5719-llvm-6d044b588bc31cf186bc7706730e29650042b2fb.tar.gz
bcm5719-llvm-6d044b588bc31cf186bc7706730e29650042b2fb.zip
Namespace correctness is good
llvm-svn: 3088
-rw-r--r--llvm/tools/lli/lli.cpp4
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"));
OpenPOWER on IntegriCloud