summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaTargetMachine.cpp
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-09-18 19:44:29 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-09-18 19:44:29 +0000
commit2ab804c60743b4e24a9277e2ef92330c31f64bc7 (patch)
treed05e36b17e03d17e57016faff9eff874c47e91e1 /lib/Target/Alpha/AlphaTargetMachine.cpp
parent011f1846013e6c0c55e6e583a9ca1bc5e7e7fc1e (diff)
downloadllvm-2ab804c60743b4e24a9277e2ef92330c31f64bc7.tar.gz
llvm-2ab804c60743b4e24a9277e2ef92330c31f64bc7.tar.bz2
llvm-2ab804c60743b4e24a9277e2ef92330c31f64bc7.tar.xz
A pass to remove the worst of the replay trap offenders, and as a bonus, align basic blocks when it is free to do so
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30467 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaTargetMachine.cpp')
-rw-r--r--lib/Target/Alpha/AlphaTargetMachine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp
index b752e4c104..6204998b24 100644
--- a/lib/Target/Alpha/AlphaTargetMachine.cpp
+++ b/lib/Target/Alpha/AlphaTargetMachine.cpp
@@ -77,6 +77,7 @@ bool AlphaTargetMachine::addPreEmitPass(FunctionPassManager &PM, bool Fast) {
}
bool AlphaTargetMachine::addAssemblyEmitter(FunctionPassManager &PM, bool Fast,
std::ostream &Out) {
+ PM.add(createAlphaLLRPPass(*this));
PM.add(createAlphaCodePrinterPass(Out, *this));
return false;
}