summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-06-18 02:30:02 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-06-18 02:30:02 +0000
commit4b2a174e21b7cfc2c45db895efc7c638e4c68538 (patch)
treebedd389a9f6b4cfc032679c0991954cf706350b9 /lib
parent0a074ed3ef7c87512d8562ff216e2ad4a29b6566 (diff)
downloadllvm-4b2a174e21b7cfc2c45db895efc7c638e4c68538.tar.gz
llvm-4b2a174e21b7cfc2c45db895efc7c638e4c68538.tar.bz2
llvm-4b2a174e21b7cfc2c45db895efc7c638e4c68538.tar.xz
Delete unneeded allocation order override.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/Blackfin/BlackfinRegisterInfo.td12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/Target/Blackfin/BlackfinRegisterInfo.td b/lib/Target/Blackfin/BlackfinRegisterInfo.td
index 9e2f79f384..0d502fdcc7 100644
--- a/lib/Target/Blackfin/BlackfinRegisterInfo.td
+++ b/lib/Target/Blackfin/BlackfinRegisterInfo.td
@@ -254,17 +254,7 @@ def PI : RegisterClass<"BF", [i32], 32, (add P, I)>;
let CopyCost = -1, Size = 8 in {
def JustCC : RegisterClass<"BF", [i32], 8, (add CC)>;
def NotCC : RegisterClass<"BF", [i32], 8, (add NCC)>;
-def AnyCC : RegisterClass<"BF", [i32], 8, (add CC, NCC)> {
- let MethodProtos = [{
- iterator allocation_order_end(const MachineFunction &MF) const;
- }];
- let MethodBodies = [{
- AnyCCClass::iterator
- AnyCCClass::allocation_order_end(const MachineFunction &MF) const {
- return allocation_order_begin(MF)+1;
- }
- }];
-}
+def AnyCC : RegisterClass<"BF", [i32], 8, (add CC, NCC)>;
def StatBit : RegisterClass<"BF", [i1], 8,
(add AZ, AN, CC, AQ, AC0, AC1, AV0, AV0S, AV1, AV1S, V, VS)>;
}