From: Eric Christopher Date: Wed, 21 May 2014 21:05:05 +0000 (+0000) Subject: Make a couple of command lines static and remove an unnecessary X-Git-Tag: android-x86-7.1-r4~61458 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9a3798632893c9fdec7e29afbdd98be6ef82a72a;p=android-x86%2Fexternal-llvm.git Make a couple of command lines static and remove an unnecessary initialization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209320 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index abdc1ab634c..47be4a8b71a 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -75,13 +75,11 @@ OptLevel("O", static cl::opt TargetTriple("mtriple", cl::desc("Override target triple for module")); -cl::opt NoVerify("disable-verify", cl::Hidden, - cl::desc("Do not verify input module")); +static cl::opt NoVerify("disable-verify", cl::Hidden, + cl::desc("Do not verify input module")); -cl::opt -DisableSimplifyLibCalls("disable-simplify-libcalls", - cl::desc("Disable simplify-libcalls"), - cl::init(false)); +static cl::opt DisableSimplifyLibCalls("disable-simplify-libcalls", + cl::desc("Disable simplify-libcalls")); static int compileModule(char**, LLVMContext&);