[llvm-branch-commits] [llvm] c121241 - [NFC][SpecialCaseList] Remove LLVM_ABI from SpecialCaseList::Matcher::preprocess. (#164526)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Oct 22 01:23:44 PDT 2025
Author: Vitaly Buka
Date: 2025-10-22T01:44:56Z
New Revision: c1212419a52fb9d3eddd563996cf63bd27284066
URL: https://github.com/llvm/llvm-project/commit/c1212419a52fb9d3eddd563996cf63bd27284066
DIFF: https://github.com/llvm/llvm-project/commit/c1212419a52fb9d3eddd563996cf63bd27284066.diff
LOG: [NFC][SpecialCaseList] Remove LLVM_ABI from SpecialCaseList::Matcher::preprocess. (#164526)
Copied here from header by mistake.
---------
Co-authored-by: Marco Elver <elver at google.com>
Added:
Modified:
llvm/lib/Support/SpecialCaseList.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Support/SpecialCaseList.cpp b/llvm/lib/Support/SpecialCaseList.cpp
index 549c4183298d8..f74e52a3a7fa9 100644
--- a/llvm/lib/Support/SpecialCaseList.cpp
+++ b/llvm/lib/Support/SpecialCaseList.cpp
@@ -111,7 +111,7 @@ Error SpecialCaseList::Matcher::insert(StringRef Pattern, unsigned LineNumber) {
return std::visit([&](auto &V) { return V.insert(Pattern, LineNumber); }, M);
}
-LLVM_ABI void SpecialCaseList::Matcher::preprocess(bool BySize) {
+void SpecialCaseList::Matcher::preprocess(bool BySize) {
return std::visit([&](auto &V) { return V.preprocess(BySize); }, M);
}
More information about the llvm-branch-commits
mailing list