aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-28 19:54:16 +0000
committerChris Lattner <sabre@nondot.org>2004-02-28 19:54:16 +0000
commit3da51173349e2ec6d26228d4d2f59c91fccc39b0 (patch)
tree1d23271d2d872bedea58b7bcf18f9098628e4119
parent8a6238425348f55eca2fd0d3072b027dd7801478 (diff)
Add hook for V8 target
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11961 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Target/TargetMachineImpls.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetMachineImpls.h b/include/llvm/Target/TargetMachineImpls.h
index 5003f4da98..a2488b5fe8 100644
--- a/include/llvm/Target/TargetMachineImpls.h
+++ b/include/llvm/Target/TargetMachineImpls.h
@@ -30,13 +30,21 @@ namespace llvm {
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