[llvm] [NFC][TableGen] Make `AsmMatcherEmitterCat` static (PR #125881)
Rahul Joshi via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 08:53:57 PST 2025
https://github.com/jurahul created https://github.com/llvm/llvm-project/pull/125881
None
>From b8b03b3253f0d8f41e8106b63bb532d13b1eacb0 Mon Sep 17 00:00:00 2001
From: Rahul Joshi <rjoshi at nvidia.com>
Date: Wed, 5 Feb 2025 08:52:28 -0800
Subject: [PATCH] [NFC][TableGen] Make `AsmMatcherEmitterCat` static
---
llvm/utils/TableGen/AsmMatcherEmitter.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/utils/TableGen/AsmMatcherEmitter.cpp b/llvm/utils/TableGen/AsmMatcherEmitter.cpp
index 7684387d80fe248..fcc82e598c4378b 100644
--- a/llvm/utils/TableGen/AsmMatcherEmitter.cpp
+++ b/llvm/utils/TableGen/AsmMatcherEmitter.cpp
@@ -125,7 +125,7 @@ using namespace llvm;
#define DEBUG_TYPE "asm-matcher-emitter"
-cl::OptionCategory AsmMatcherEmitterCat("Options for -gen-asm-matcher");
+static cl::OptionCategory AsmMatcherEmitterCat("Options for -gen-asm-matcher");
static cl::opt<std::string>
MatchPrefix("match-prefix", cl::init(""),
More information about the llvm-commits
mailing list