summaryrefslogtreecommitdiff
path: root/lib/Target/Sparc/Sparc.td
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-05 05:50:24 +0000
committerChris Lattner <sabre@nondot.org>2006-02-05 05:50:24 +0000
commit7c90f73a1b06040d971a3dd95a491031ae6238d5 (patch)
treeb08b13069e8e41b83636b53103804110e993d376 /lib/Target/Sparc/Sparc.td
parent213845367cb394237cbf10ccfba5a219bbec4781 (diff)
downloadllvm-7c90f73a1b06040d971a3dd95a491031ae6238d5.tar.gz
llvm-7c90f73a1b06040d971a3dd95a491031ae6238d5.tar.bz2
llvm-7c90f73a1b06040d971a3dd95a491031ae6238d5.tar.xz
Rename SPARC V8 target to be the LLVM SPARC target.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/Sparc.td')
-rw-r--r--lib/Target/Sparc/Sparc.td12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Target/Sparc/Sparc.td b/lib/Target/Sparc/Sparc.td
index b123930157..aa8b9e2c72 100644
--- a/lib/Target/Sparc/Sparc.td
+++ b/lib/Target/Sparc/Sparc.td
@@ -1,4 +1,4 @@
-//===- SparcV8.td - Describe the SparcV8 Target Machine ---------*- C++ -*-===//
+//===- Sparc.td - Describe the Sparc Target Machine -------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -34,15 +34,15 @@ def FeatureVIS
// Register File Description
//===----------------------------------------------------------------------===//
-include "SparcV8RegisterInfo.td"
+include "SparcRegisterInfo.td"
//===----------------------------------------------------------------------===//
// Instruction Descriptions
//===----------------------------------------------------------------------===//
-include "SparcV8InstrInfo.td"
+include "SparcInstrInfo.td"
-def SparcV8InstrInfo : InstrInfo {
+def SparcInstrInfo : InstrInfo {
// Define how we want to layout our target-specific information field.
let TSFlagsFields = [];
let TSFlagsShifts = [];
@@ -74,7 +74,7 @@ def : Proc<"ultrasparc3-vis", [FeatureV9, FeatureV8Deprecated, FeatureVIS]>;
// Declare the target which we are implementing
//===----------------------------------------------------------------------===//
-def SparcV8 : Target {
+def Sparc : Target {
// Pointers are 32-bits in size.
let PointerType = i32;
@@ -82,5 +82,5 @@ def SparcV8 : Target {
let CalleeSavedRegisters = [];
// Pull in Instruction Info:
- let InstructionSet = SparcV8InstrInfo;
+ let InstructionSet = SparcInstrInfo;
}