diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-29 22:01:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-29 22:01:44 +0000 |
commit | e2ac27117376f97cbe0c2fdcba25de5207e5dd01 (patch) | |
tree | 1a26df03eaafcb1e4152f9b80b6a2cf438a626c9 /llvm/lib/Target/Sparc/SparcInternals.h | |
parent | d9c45e13107d05911a7e92cc3b7f5930fdc3e2d3 (diff) | |
download | bcm5719-llvm-e2ac27117376f97cbe0c2fdcba25de5207e5dd01.tar.gz bcm5719-llvm-e2ac27117376f97cbe0c2fdcba25de5207e5dd01.zip |
These are no longer virtual methods
llvm-svn: 4420
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcInternals.h')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcInternals.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/Sparc/SparcInternals.h b/llvm/lib/Target/Sparc/SparcInternals.h index e31f375dc6a..31ec6a25b2a 100644 --- a/llvm/lib/Target/Sparc/SparcInternals.h +++ b/llvm/lib/Target/Sparc/SparcInternals.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 |