[llvm-commits] [llvm] r136082 - in /llvm/trunk: include/llvm-c/Transforms/IPO.h lib/Transforms/IPO/IPO.cpp

Rafael Espindola rafael.espindola at gmail.com
Tue Jul 26 08:17:33 PDT 2011


Author: rafael
Date: Tue Jul 26 10:17:32 2011
New Revision: 136082

URL: http://llvm.org/viewvc/llvm-project?rev=136082&view=rev
Log:
LLVM 3.0 is here, remove old do nothing method.

Modified:
    llvm/trunk/include/llvm-c/Transforms/IPO.h
    llvm/trunk/lib/Transforms/IPO/IPO.cpp

Modified: llvm/trunk/include/llvm-c/Transforms/IPO.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/Transforms/IPO.h?rev=136082&r1=136081&r2=136082&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/Transforms/IPO.h (original)
+++ llvm/trunk/include/llvm-c/Transforms/IPO.h Tue Jul 26 10:17:32 2011
@@ -57,9 +57,6 @@
 /** See llvm::createInternalizePass function. */
 void LLVMAddInternalizePass(LLVMPassManagerRef, unsigned AllButMain);
 
-// FIXME: Remove in LLVM 3.0.
-void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM);
-
 /** See llvm::createStripDeadPrototypesPass function. */
 void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM);
 

Modified: llvm/trunk/lib/Transforms/IPO/IPO.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/IPO.cpp?rev=136082&r1=136081&r2=136082&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/IPO.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/IPO.cpp Tue Jul 26 10:17:32 2011
@@ -98,11 +98,6 @@
   unwrap(PM)->add(createInternalizePass(AllButMain != 0));
 }
 
-
-void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM) {
-  // FIXME: Remove in LLVM 3.0.
-}
-
 void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM) {
   unwrap(PM)->add(createStripDeadPrototypesPass());
 }





More information about the llvm-commits mailing list