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/utils/TableGen/DecoderEmitter.cpp | |
parent | 1b043c25573aa0b13ad4241c641c38ca26f26bc1 (diff) | |
download | llvm-71f4c7dabec0f32b2d475e8e08f0da99628a067c.zip llvm-71f4c7dabec0f32b2d475e8e08f0da99628a067c.tar.gz llvm-71f4c7dabec0f32b2d475e8e08f0da99628a067c.tar.bz2 |
[NFC]Make file-local cl::opt global variables static (#126486)
#125983
Diffstat (limited to 'llvm/utils/TableGen/DecoderEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/DecoderEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp index 4e591f5..425bf82 100644 --- a/llvm/utils/TableGen/DecoderEmitter.cpp +++ b/llvm/utils/TableGen/DecoderEmitter.cpp @@ -60,7 +60,7 @@ enum SuppressLevel { SUPPRESSION_LEVEL2 }; -cl::opt<SuppressLevel> DecoderEmitterSuppressDuplicates( +static cl::opt<SuppressLevel> DecoderEmitterSuppressDuplicates( "suppress-per-hwmode-duplicates", cl::desc("Suppress duplication of instrs into per-HwMode decoder tables"), cl::values( |