diff options
| author | chrisPyr <32153107+chrisPyr@users.noreply.github.com> | 2025-03-03 14:46:33 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-03 13:46:33 +0700 |
| commit | 71f4c7dabec0f32b2d475e8e08f0da99628a067c (patch) | |
| tree | 855a0b24f32551f0a9de9f1404826adbac111fb5 /llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp | |
| parent | 1b043c25573aa0b13ad4241c641c38ca26f26bc1 (diff) | |
[NFC]Make file-local cl::opt global variables static (#126486)
#125983
Diffstat (limited to 'llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp')
| -rw-r--r-- | llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp b/llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp index a219cab6e2f7..043150f47d92 100644 --- a/llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp +++ b/llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/LLJITWithExecutorProcessControl.cpp @@ -117,8 +117,8 @@ static void reportErrorAndExit() { exit(1); } -cl::list<std::string> InputArgv(cl::Positional, - cl::desc("<program arguments>...")); +static cl::list<std::string> InputArgv(cl::Positional, + cl::desc("<program arguments>...")); int main(int argc, char *argv[]) { // Initialize LLVM. |
