diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-09-18 19:44:29 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-09-18 19:44:29 +0000 |
commit | f23e3bfcb27f8c08f29e54eba8ff7e1a0919ddeb (patch) | |
tree | 11c6aba9c41d61a418a5a8bb3de8bdfcb6522ded /llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | 51cb632a1bdf5772aa68caa09c4ceb04588abb3d (diff) | |
download | bcm5719-llvm-f23e3bfcb27f8c08f29e54eba8ff7e1a0919ddeb.tar.gz bcm5719-llvm-f23e3bfcb27f8c08f29e54eba8ff7e1a0919ddeb.zip |
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
llvm-svn: 30467
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp index b752e4c1043..6204998b240 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/llvm/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; } |