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 <[email protected]>

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);
 }
 


        
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to