diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-03 22:18:20 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-03 22:18:20 +0000 |
commit | 2626dba9c5515d2e534c117bb16ceb03dd4d0930 (patch) | |
tree | bcb8a124d8e55520c15a83e34a9762d4f9b73fbb /include/llvm/Transforms | |
parent | 56cb3e3ccbc766086841d04fb8f136c7b4718dd5 (diff) | |
download | external_llvm-2626dba9c5515d2e534c117bb16ceb03dd4d0930.zip external_llvm-2626dba9c5515d2e534c117bb16ceb03dd4d0930.tar.gz external_llvm-2626dba9c5515d2e534c117bb16ceb03dd4d0930.tar.bz2 |
Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets.
This is some of my original LLVM code. *wipes tear*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r-- | include/llvm/Transforms/IPO.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h index 9b59353..f9d7f9e 100644 --- a/include/llvm/Transforms/IPO.h +++ b/include/llvm/Transforms/IPO.h @@ -50,13 +50,6 @@ ModulePass *createStripDebugDeclarePass(); ModulePass *createStripDeadDebugInfoPass(); //===----------------------------------------------------------------------===// -/// createLowerSetJmpPass - This function lowers the setjmp/longjmp intrinsics -/// to invoke/unwind instructions. This should really be part of the C/C++ -/// front-end, but it's so much easier to write transformations in LLVM proper. -/// -ModulePass *createLowerSetJmpPass(); - -//===----------------------------------------------------------------------===// /// createConstantMergePass - This function returns a new pass that merges /// duplicate global constants together into a single constant that is shared. /// This is useful because some passes (ie TraceValues) insert a lot of string |