diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2008-03-21 16:46:53 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2008-03-21 16:46:53 +0000 |
commit | 7623716e613032cff6c3d6808a19f0091ba9f4e8 (patch) | |
tree | e50a5a67a6dbe57bc4de826738439b025d747c6f /include/llvm | |
parent | 495304e35125ee951bc7667554bf8c9e3009e311 (diff) | |
download | external_llvm-7623716e613032cff6c3d6808a19f0091ba9f4e8.zip external_llvm-7623716e613032cff6c3d6808a19f0091ba9f4e8.tar.gz external_llvm-7623716e613032cff6c3d6808a19f0091ba9f4e8.tar.bz2 |
FunctionExtractorPass has been superceded by GVExtractorPass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Transforms/IPO.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h index f9890ac..09ad943 100644 --- a/include/llvm/Transforms/IPO.h +++ b/include/llvm/Transforms/IPO.h @@ -79,14 +79,6 @@ ModulePass *createGlobalDCEPass(); //===----------------------------------------------------------------------===// -/// createFunctionExtractionPass - If deleteFn is true, this pass deletes as -/// the specified function. Otherwise, it deletes as much of the module as -/// possible, except for the function specified. -/// -ModulePass *createFunctionExtractionPass(Function *F, bool deleteFn = false, - bool relinkCallees = false); - -//===----------------------------------------------------------------------===// /// createGVExtractionPass - If deleteFn is true, this pass deletes as /// the specified global values. Otherwise, it deletes as much of the module as /// possible, except for the global values specified. |