[llvm] f15b756 - [ORC] Remove unnecessary LLVM_ABI on function def. NFCI. (#168478)

via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 17 22:51:41 PST 2025


Author: Lang Hames
Date: 2025-11-18T17:51:37+11:00
New Revision: f15b756b56d0653181f062901916806bc5eba280

URL: https://github.com/llvm/llvm-project/commit/f15b756b56d0653181f062901916806bc5eba280
DIFF: https://github.com/llvm/llvm-project/commit/f15b756b56d0653181f062901916806bc5eba280.diff

LOG: [ORC] Remove unnecessary LLVM_ABI on function def. NFCI. (#168478)

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/Orc/MachO.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/Orc/MachO.cpp b/llvm/lib/ExecutionEngine/Orc/MachO.cpp
index 731d24d1272d4..6b0f96da19dc6 100644
--- a/llvm/lib/ExecutionEngine/Orc/MachO.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/MachO.cpp
@@ -282,7 +282,7 @@ Expected<bool> ForceLoadMachOArchiveMembers::operator()(
   return true;
 }
 
-LLVM_ABI SmallVector<std::pair<uint32_t, uint32_t>>
+SmallVector<std::pair<uint32_t, uint32_t>>
 noFallbackArchs(uint32_t CPUType, uint32_t CPUSubType) {
   SmallVector<std::pair<uint32_t, uint32_t>> Result;
   Result.push_back({CPUType, CPUSubType});


        


More information about the llvm-commits mailing list