aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-29 22:01:44 +0000
committerChris Lattner <sabre@nondot.org>2002-10-29 22:01:44 +0000
commitc66583ef3b08abf73cd527d299d978e38a5254ef (patch)
treed6f7ae125434c83e107fab9ee0f1864b80861444
parent272ba1d0ad1ffcdeb19eea416ecedba220802bb6 (diff)
These are no longer virtual methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4420 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9Internals.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/SparcV9/SparcV9Internals.h b/lib/Target/SparcV9/SparcV9Internals.h
index e31f375dc6..31ec6a25b2 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