summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-26 00:22:55 +0000
committerDan Gohman <gohman@apple.com>2010-08-26 00:22:55 +0000
commitb4e3cda1189fae8333fd3fa9051b47ed067ae1fd (patch)
tree8baa1051b683ea70056dc313862bc9eb0f70b532 /include
parent2ac124c561c6c6687ce0a4f7709586010b6c80c4 (diff)
downloadllvm-b4e3cda1189fae8333fd3fa9051b47ed067ae1fd.tar.gz
llvm-b4e3cda1189fae8333fd3fa9051b47ed067ae1fd.tar.bz2
llvm-b4e3cda1189fae8333fd3fa9051b47ed067ae1fd.tar.xz
Rewrite ExtractGV, removing a bunch of stuff that didn't fully work,
and was over-complicated, and replacing it with a simple implementation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Transforms/IPO.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h
index fc67bc594b..0de100348d 100644
--- a/include/llvm/Transforms/IPO.h
+++ b/include/llvm/Transforms/IPO.h
@@ -93,8 +93,7 @@ ModulePass *createGlobalDCEPass();
/// possible, except for the global values specified.
///
ModulePass *createGVExtractionPass(std::vector<GlobalValue*>& GVs, bool
- deleteFn = false,
- bool relinkCallees = false);
+ deleteFn = false);
//===----------------------------------------------------------------------===//
/// createFunctionInliningPass - Return a new pass object that uses a heuristic