move createAlphaLLRPPass out of addAssemblyEmitter to make Alpha

more like other targets.

llvm-svn: 75839
This commit is contained in:
Chris Lattner 2009-07-15 21:40:24 +00:00
parent 43229fb489
commit d098c5a0fc
1 changed files with 1 additions and 1 deletions

View File

@ -61,13 +61,13 @@ bool AlphaTargetMachine::addPreEmitPass(PassManagerBase &PM,
CodeGenOpt::Level OptLevel) {
// Must run branch selection immediately preceding the asm printer
PM.add(createAlphaBranchSelectionPass());
PM.add(createAlphaLLRPPass(*this));
return false;
}
bool AlphaTargetMachine::addAssemblyEmitter(PassManagerBase &PM,
CodeGenOpt::Level OptLevel,
bool Verbose,
formatted_raw_ostream &Out) {
PM.add(createAlphaLLRPPass(*this));
// Output assembly language.
assert(AsmPrinterCtor && "AsmPrinter was not linked in");
if (AsmPrinterCtor)