summaryrefslogtreecommitdiff
path: root/tools/opt
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-03 23:15:56 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-03 23:15:56 +0000
commit7ba98a90008727e2fa0dfc1787cad71e1b6021eb (patch)
tree3771eb020732050a9fb5db800b223bb96ff15afd /tools/opt
parenta49fd07ec6a8a667d9f666ef3560d5d1a64bcc12 (diff)
downloadllvm-7ba98a90008727e2fa0dfc1787cad71e1b6021eb.tar.gz
llvm-7ba98a90008727e2fa0dfc1787cad71e1b6021eb.tar.bz2
llvm-7ba98a90008727e2fa0dfc1787cad71e1b6021eb.tar.xz
For PR1072:
Removing -raise has neglible positive or negative side effects so we are opting to remove it. See the PR for comparison details. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33844 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt')
-rw-r--r--tools/opt/Makefile3
-rw-r--r--tools/opt/opt.cpp1
2 files changed, 1 insertions, 3 deletions
diff --git a/tools/opt/Makefile b/tools/opt/Makefile
index 6d11d34d3e..0ea3a7fc06 100644
--- a/tools/opt/Makefile
+++ b/tools/opt/Makefile
@@ -10,7 +10,6 @@ LEVEL = ../..
TOOLNAME = opt
REQUIRES_EH := 1
-LINK_COMPONENTS := bcreader bcwriter instrumentation scalaropts ipo \
- transforms
+LINK_COMPONENTS := bcreader bcwriter instrumentation scalaropts ipo
include $(LEVEL)/Makefile.common
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index 886bd63a4d..76cede13f6 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -202,7 +202,6 @@ void AddStandardCompilePasses(PassManager &PM) {
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