[llvm] e6fbfb1 - [NFC] Make Module::getIFuncList() private
Vasileios Porpodas via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 15 12:16:41 PST 2023
Author: Vasileios Porpodas
Date: 2023-02-15T12:16:10-08:00
New Revision: e6fbfb1ff1d352b2f8f0b6d39f4665fd91f0d21d
URL: https://github.com/llvm/llvm-project/commit/e6fbfb1ff1d352b2f8f0b6d39f4665fd91f0d21d
DIFF: https://github.com/llvm/llvm-project/commit/e6fbfb1ff1d352b2f8f0b6d39f4665fd91f0d21d.diff
LOG: [NFC] Make Module::getIFuncList() private
This is a followup to d180443570d7895193d2ab6f1e1486d669dc9723
which did not actually remove the `public` keyword.
Differential Revision: https://reviews.llvm.org/D144127
Added:
Modified:
llvm/include/llvm/IR/Module.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/IR/Module.h b/llvm/include/llvm/IR/Module.h
index aacdbbf08b945..83c2594a8ad60 100644
--- a/llvm/include/llvm/IR/Module.h
+++ b/llvm/include/llvm/IR/Module.h
@@ -623,7 +623,6 @@ class LLVM_EXTERNAL_VISIBILITY Module {
}
friend class llvm::SymbolTableListTraits<llvm::GlobalAlias>;
-public:
/// Get the Module's list of ifuncs (constant).
const IFuncListType &getIFuncList() const { return IFuncList; }
/// Get the Module's list of ifuncs.
More information about the llvm-commits
mailing list