[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcInternals.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 29 16:02:05 PST 2002
Changes in directory llvm/lib/Target/Sparc:
SparcInternals.h updated: 1.72 -> 1.73
---
Log message:
These are no longer virtual methods
---
Diffs of the changes:
Index: llvm/lib/Target/Sparc/SparcInternals.h
diff -u llvm/lib/Target/Sparc/SparcInternals.h:1.72 llvm/lib/Target/Sparc/SparcInternals.h:1.73
--- llvm/lib/Target/Sparc/SparcInternals.h:1.72 Tue Oct 29 15:12:45 2002
+++ llvm/lib/Target/Sparc/SparcInternals.h Tue Oct 29 16:01:44 2002
@@ -720,17 +720,17 @@
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
More information about the llvm-commits
mailing list