forked from OSchip/llvm-project
The function to create an instance of this pass is no longer a method of
the UltraSparc class. llvm-svn: 9952
This commit is contained in:
parent
167026f8c8
commit
2558e8c852
|
@ -112,7 +112,7 @@ namespace {
|
|||
};
|
||||
} // end anonymous namespace
|
||||
|
||||
Pass *UltraSparc::getBytecodeAsmPrinterPass(std::ostream &Out) {
|
||||
Pass *createBytecodeAsmPrinterPass(std::ostream &Out) {
|
||||
return new SparcBytecodeWriter(Out);
|
||||
}
|
||||
|
||||
|
|
|
@ -176,7 +176,7 @@ void InsertPrologEpilogCode::InsertEpilogCode(MachineFunction &MF)
|
|||
}
|
||||
}
|
||||
|
||||
FunctionPass *UltraSparc::getPrologEpilogInsertionPass() {
|
||||
FunctionPass *createPrologEpilogInsertionPass() {
|
||||
return new InsertPrologEpilogCode();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue