diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/Makefile | 2 | ||||
-rw-r--r-- | tools/opt/Makefile | 3 | ||||
-rw-r--r-- | tools/opt/opt.cpp | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/tools/bugpoint/Makefile b/tools/bugpoint/Makefile index 272f973..acafa83 100644 --- a/tools/bugpoint/Makefile +++ b/tools/bugpoint/Makefile @@ -11,7 +11,7 @@ LEVEL = ../.. TOOLNAME = bugpoint LINK_COMPONENTS := bcreader bcwriter asmparser instrumentation scalaropts ipo \ - transforms linker + linker REQUIRES_EH := 1 include $(LEVEL)/Makefile.common diff --git a/tools/opt/Makefile b/tools/opt/Makefile index 6d11d34..0ea3a7f 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 886bd63..76cede1 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 |