summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCRegisterInfo.td
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-06-16 18:50:48 +0000
committerChris Lattner <sabre@nondot.org>2006-06-16 18:50:48 +0000
commitaf89fa609bce1004c9ea9737d9fdb32f4224ef1c (patch)
treea7e1d57530712f4f34717abcb53dd425a4d5b0e9 /lib/Target/PowerPC/PPCRegisterInfo.td
parentfb9d0dce976452f878e5bfd768f1ba35b182c33d (diff)
downloadllvm-af89fa609bce1004c9ea9737d9fdb32f4224ef1c.tar.gz
llvm-af89fa609bce1004c9ea9737d9fdb32f4224ef1c.tar.bz2
llvm-af89fa609bce1004c9ea9737d9fdb32f4224ef1c.tar.xz
Remove the -darwin and -aix llc options, inferring darwinism and aixism from
the target triple & subtarget info. woo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28835 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCRegisterInfo.td')
-rw-r--r--lib/Target/PowerPC/PPCRegisterInfo.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCRegisterInfo.td b/lib/Target/PowerPC/PPCRegisterInfo.td
index 9cd2145226..5c6ac247c9 100644
--- a/lib/Target/PowerPC/PPCRegisterInfo.td
+++ b/lib/Target/PowerPC/PPCRegisterInfo.td
@@ -215,7 +215,7 @@ def GPRC : RegisterClass<"PPC", [i32], 32,
let MethodBodies = [{
GPRCClass::iterator
GPRCClass::allocation_order_begin(MachineFunction &MF) const {
- return begin() + ((TargetAIX == PPCTarget) ? 1 : 0);
+ return begin();
}
GPRCClass::iterator
GPRCClass::allocation_order_end(MachineFunction &MF) const {
@@ -238,7 +238,7 @@ def G8RC : RegisterClass<"PPC", [i64], 64,
let MethodBodies = [{
G8RCClass::iterator
G8RCClass::allocation_order_begin(MachineFunction &MF) const {
- return begin() + ((TargetAIX == PPCTarget) ? 1 : 0);
+ return begin();
}
G8RCClass::iterator
G8RCClass::allocation_order_end(MachineFunction &MF) const {