[llvm-commits] CVS: llvm/include/llvm/Target/TargetMachineImpls.h
Chris Lattner
lattner at cs.uiuc.edu
Sat Feb 28 13:55:37 PST 2004
Changes in directory llvm/include/llvm/Target:
TargetMachineImpls.h updated: 1.11 -> 1.12
---
Log message:
Add hook for V8 target
---
Diffs of the changes: (+11 -3)
Index: llvm/include/llvm/Target/TargetMachineImpls.h
diff -u llvm/include/llvm/Target/TargetMachineImpls.h:1.11 llvm/include/llvm/Target/TargetMachineImpls.h:1.12
--- llvm/include/llvm/Target/TargetMachineImpls.h:1.11 Wed Feb 25 13:08:11 2004
+++ llvm/include/llvm/Target/TargetMachineImpls.h Sat Feb 28 13:54:16 2004
@@ -30,13 +30,21 @@
IntrinsicLowering *IL = 0);
// allocateSparcV9TargetMachine - Allocate and return a subclass of
- // TargetMachine that implements the Sparc backend. This takes ownership of
- // the IntrinsicLowering pointer, deleting it when the target machine is
- // destroyed.
+ // TargetMachine that implements the 64-bit Sparc backend. This takes
+ // ownership of the IntrinsicLowering pointer, deleting it when the target
+ // machine is destroyed.
//
TargetMachine *allocateSparcV9TargetMachine(const Module &M,
IntrinsicLowering *IL = 0);
+ // allocateSparcV8TargetMachine - Allocate and return a subclass of
+ // TargetMachine that implements the 32-bit Sparc backend. This takes
+ // ownership of the IntrinsicLowering pointer, deleting it when the target
+ // machine is destroyed.
+ //
+ TargetMachine *allocateSparcV8TargetMachine(const Module &M,
+ IntrinsicLowering *IL = 0);
+
// allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
// that implements the X86 backend. This takes ownership of the
// IntrinsicLowering pointer, deleting it when the target machine is
More information about the llvm-commits
mailing list