The function to create an instance of this pass is no longer a method of

the UltraSparc class.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-11-13 00:19:02 +00:00
parent 7e060be881
commit 661a571053
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ namespace {
};
} // end anonymous namespace
Pass *UltraSparc::getBytecodeAsmPrinterPass(std::ostream &Out) {
Pass *createBytecodeAsmPrinterPass(std::ostream &Out) {
return new SparcBytecodeWriter(Out);
}

View File

@ -176,7 +176,7 @@ void InsertPrologEpilogCode::InsertEpilogCode(MachineFunction &MF)
}
}
FunctionPass *UltraSparc::getPrologEpilogInsertionPass() {
FunctionPass *createPrologEpilogInsertionPass() {
return new InsertPrologEpilogCode();
}