diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-28 22:49:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-28 22:49:49 +0000 |
commit | 21ba3fec994fefad527befeabe586ad19e79cb6c (patch) | |
tree | 8dd443af457bb3a77309442a63389b245d542bf5 /include/llvm/Module.h | |
parent | 4dc1f82e7e8ffe60716a8dbab2f5d8fdb288bced (diff) |
Remove the reduceApply functions they are obsolete things from the days before
we had a reasonable pass system
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2022 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r-- | include/llvm/Module.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 8223f6f612..d7d9240f3a 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -52,14 +52,6 @@ public: Module(); ~Module(); - // reduceApply - Apply the specified function to all of the methods in this - // module. The result values are or'd together and the result is returned. - // - bool reduceApply(bool (*Func)(GlobalVariable*)); - bool reduceApply(bool (*Func)(const GlobalVariable*)) const; - bool reduceApply(bool (*Func)(Function*)); - bool reduceApply(bool (*Func)(const Function*)) const; - // Get the underlying elements of the Module... inline const GlobalListType &getGlobalList() const { return GlobalList; } inline GlobalListType &getGlobalList() { return GlobalList; } |