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&);