summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-01-16 00:27:10 +0000
committerChris Lattner <sabre@nondot.org>2011-01-16 00:27:10 +0000
commit0092b1142f5d35d204f35ec3cfe19d8de082400f (patch)
tree628aa3adbb3418b5ebfedfd53471e84cba1e2ea0 /include/llvm/Transforms
parenta7a71a375c43cb802df6e5d55685ad5d4a17cf76 (diff)
downloadllvm-0092b1142f5d35d204f35ec3cfe19d8de082400f.tar.gz
llvm-0092b1142f5d35d204f35ec3cfe19d8de082400f.tar.bz2
llvm-0092b1142f5d35d204f35ec3cfe19d8de082400f.tar.xz
remove the partial specialization pass. It is unmaintained and has bugs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123554 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/IPO.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h
index 40ef9bbbd6..12398813cc 100644
--- a/include/llvm/Transforms/IPO.h
+++ b/include/llvm/Transforms/IPO.h
@@ -189,12 +189,6 @@ ModulePass *createBlockExtractorPass();
ModulePass *createStripDeadPrototypesPass();
//===----------------------------------------------------------------------===//
-/// createPartialSpecializationPass - This pass specializes functions for
-/// constant arguments.
-///
-ModulePass *createPartialSpecializationPass();
-
-//===----------------------------------------------------------------------===//
/// createFunctionAttrsPass - This pass discovers functions that do not access
/// memory, or only read memory, and gives them the readnone/readonly attribute.
/// It also discovers function arguments that are not captured by the function