[llvm-commits] CVS: llvm/tools/opt/Makefile opt.cpp

Reid Spencer reid at x10sys.com
Sat Feb 3 15:16:24 PST 2007



Changes in directory llvm/tools/opt:

Makefile updated: 1.60 -> 1.61
opt.cpp updated: 1.128 -> 1.129
---
Log message:

For PR1072: http://llvm.org/PR1072 :
Removing -raise has neglible positive or negative side effects so we are
opting to remove it. See the PR for comparison details.


---
Diffs of the changes:  (+1 -3)

 Makefile |    3 +--
 opt.cpp  |    1 -
 2 files changed, 1 insertion(+), 3 deletions(-)


Index: llvm/tools/opt/Makefile
diff -u llvm/tools/opt/Makefile:1.60 llvm/tools/opt/Makefile:1.61
--- llvm/tools/opt/Makefile:1.60	Wed Dec 13 10:54:05 2006
+++ llvm/tools/opt/Makefile	Sat Feb  3 17:15:56 2007
@@ -10,7 +10,6 @@
 TOOLNAME = opt
 REQUIRES_EH := 1
 
-LINK_COMPONENTS := bcreader bcwriter instrumentation scalaropts ipo \
-                   transforms
+LINK_COMPONENTS := bcreader bcwriter instrumentation scalaropts ipo
 
 include $(LEVEL)/Makefile.common


Index: llvm/tools/opt/opt.cpp
diff -u llvm/tools/opt/opt.cpp:1.128 llvm/tools/opt/opt.cpp:1.129
--- llvm/tools/opt/opt.cpp:1.128	Fri Feb  2 08:46:29 2007
+++ llvm/tools/opt/opt.cpp	Sat Feb  3 17:15:56 2007
@@ -202,7 +202,6 @@
     addPass(PM, createFunctionInliningPass());   // Inline small functions
   addPass(PM, createArgumentPromotionPass());    // Scalarize uninlined fn args
 
-  addPass(PM, createRaisePointerReferencesPass());// Recover type information
   addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
   addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs






More information about the llvm-commits mailing list