aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-18 05:02:09 +0000
committerChris Lattner <sabre@nondot.org>2009-10-18 05:02:09 +0000
commit98b532cf33a3198391f2f411879059f6c7bf99a0 (patch)
tree0b885f1ff0ce9c09ad8de5d0352aaa2c4d212261 /include/llvm
parent0ec5c324895c4c86cc749428de360d7e6b102825 (diff)
downloadexternal_llvm-98b532cf33a3198391f2f411879059f6c7bf99a0.zip
external_llvm-98b532cf33a3198391f2f411879059f6c7bf99a0.tar.gz
external_llvm-98b532cf33a3198391f2f411879059f6c7bf99a0.tar.bz2
remove the IndMemRemPass, which only made sense for when malloc/free were intrinsic
instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/LinkAllPasses.h1
-rw-r--r--include/llvm/Transforms/IPO.h4
2 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/LinkAllPasses.h b/include/llvm/LinkAllPasses.h
index a7de7e7..3342ea8 100644
--- a/include/llvm/LinkAllPasses.h
+++ b/include/llvm/LinkAllPasses.h
@@ -124,7 +124,6 @@ namespace {
(void) llvm::createCondPropagationPass();
(void) llvm::createNullProfilerRSPass();
(void) llvm::createRSProfilingPass();
- (void) llvm::createIndMemRemPass();
(void) llvm::createInstCountPass();
(void) llvm::createCodeGenLICMPass();
(void) llvm::createCodeGenPreparePass();
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h
index d66ed89..9189c43 100644
--- a/include/llvm/Transforms/IPO.h
+++ b/include/llvm/Transforms/IPO.h
@@ -185,10 +185,6 @@ Pass *createSingleLoopExtractorPass();
///
ModulePass *createBlockExtractorPass(const std::vector<BasicBlock*> &BTNE);
-/// createIndMemRemPass - This pass removes potential indirect calls of
-/// malloc and free
-ModulePass *createIndMemRemPass();
-
/// createStripDeadPrototypesPass - This pass removes any function declarations
/// (prototypes) that are not used.
ModulePass *createStripDeadPrototypesPass();