[llvm] [NFC]Make file-local cl::opt global variables static (PR #126486)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 10 02:05:58 PST 2025
================
@@ -121,8 +121,8 @@ cl::list<std::string> SafeToolArgv("safe-tool-args", cl::Positional,
cl::desc("<safe-tool arguments>..."),
cl::PositionalEatsArgs);
-cl::opt<std::string> CCBinary("gcc", cl::init(""),
- cl::desc("The gcc binary to use."));
+static cl::opt<std::string> CCBinary("gcc", cl::init(""),
----------------
arsenm wrote:
style guide says to prefer static
https://github.com/llvm/llvm-project/pull/126486
More information about the llvm-commits
mailing list