[llvm-commits] CVS: llvm/include/llvm/Target/TargetMachine.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 29 16:02:01 PST 2002
Changes in directory llvm/include/llvm/Target:
TargetMachine.h updated: 1.17 -> 1.18
---
Log message:
Eliminate virtual methods that are sparc specific
---
Diffs of the changes:
Index: llvm/include/llvm/Target/TargetMachine.h
diff -u llvm/include/llvm/Target/TargetMachine.h:1.17 llvm/include/llvm/Target/TargetMachine.h:1.18
--- llvm/include/llvm/Target/TargetMachine.h:1.17 Tue Oct 29 15:47:17 2002
+++ llvm/include/llvm/Target/TargetMachine.h Tue Oct 29 16:01:26 2002
@@ -84,25 +84,6 @@
/// not supported for this target.
///
virtual bool addPassesToJITCompile(PassManager &PM) { return true; }
-
- /// getPrologEpilogCodeInserter - Create pass to insert prolog/epilog code.
- ///
- virtual Pass* getPrologEpilogInsertionPass() = 0;
-
- /// getFunctionAsmPrinterPass - Create a pass to write out the generated
- /// machine code for a single function to the generated assembly file.
- ///
- virtual Pass* getFunctionAsmPrinterPass(std::ostream &Out) = 0;
-
- /// getModuleAsmPrinterPass - Create a pass to write out module-level
- /// information to the generated assembly file.
- ///
- virtual Pass* getModuleAsmPrinterPass(std::ostream &Out) = 0;
-
- /// getEmitBytecodeToAsmPass - Create a pass to emit the final LLVM bytecode
- /// to the generated assembly file.
- ///
- virtual Pass* getEmitBytecodeToAsmPass(std::ostream &Out) = 0;
};
#endif
More information about the llvm-commits
mailing list