From c66583ef3b08abf73cd527d299d978e38a5254ef Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 29 Oct 2002 22:01:44 +0000 Subject: [PATCH] These are no longer virtual methods git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4420 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SparcV9/SparcV9Internals.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Target/SparcV9/SparcV9Internals.h b/lib/Target/SparcV9/SparcV9Internals.h index e31f375dc6a..31ec6a25b2a 100644 --- a/lib/Target/SparcV9/SparcV9Internals.h +++ b/lib/Target/SparcV9/SparcV9Internals.h @@ -720,17 +720,17 @@ public: virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out); - // getPrologEpilogCodeInserter - Inserts prolog/epilog code. - virtual Pass* getPrologEpilogInsertionPass(); + // getPrologEpilogInsertionPass - Inserts prolog/epilog code. + Pass* getPrologEpilogInsertionPass(); // getFunctionAsmPrinterPass - Writes out machine code for a single function - virtual Pass* getFunctionAsmPrinterPass(std::ostream &Out); + Pass* getFunctionAsmPrinterPass(std::ostream &Out); // getModuleAsmPrinterPass - Writes generated machine code to assembly file. - virtual Pass* getModuleAsmPrinterPass(std::ostream &Out); + Pass* getModuleAsmPrinterPass(std::ostream &Out); // getEmitBytecodeToAsmPass - Emits final LLVM bytecode to assembly file. - virtual Pass* getEmitBytecodeToAsmPass(std::ostream &Out); + Pass* getEmitBytecodeToAsmPass(std::ostream &Out); }; #endif -- 2.34.1