From: Chris Lattner Date: Thu, 25 Jul 2002 16:39:56 +0000 (+0000) Subject: Namespace correctness is good X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=db14500d889663ef699fc4ddd3ad1d48ace82285;p=oota-llvm.git Namespace correctness is good git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3088 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index e3f585439bc..76e1eb19771 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 +static cl::opt InputFile(cl::desc(""), cl::Positional, cl::init("-")); static cl::list InputArgv(cl::ConsumeAfter, cl::desc("...")); -static cl::opt +static cl::opt MainFunction ("f", cl::desc("Function to execute"), cl::init("main"), cl::value_desc("function name"));