diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-06-18 02:30:02 +0000 | 
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-06-18 02:30:02 +0000 | 
| commit | 4b2a174e21b7cfc2c45db895efc7c638e4c68538 (patch) | |
| tree | bedd389a9f6b4cfc032679c0991954cf706350b9 /lib/Target/Blackfin | |
| parent | 0a074ed3ef7c87512d8562ff216e2ad4a29b6566 (diff) | |
| download | external_llvm-4b2a174e21b7cfc2c45db895efc7c638e4c68538.zip external_llvm-4b2a174e21b7cfc2c45db895efc7c638e4c68538.tar.gz external_llvm-4b2a174e21b7cfc2c45db895efc7c638e4c68538.tar.bz2  | |
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/Target/Blackfin')
| -rw-r--r-- | lib/Target/Blackfin/BlackfinRegisterInfo.td | 12 | 
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/Target/Blackfin/BlackfinRegisterInfo.td b/lib/Target/Blackfin/BlackfinRegisterInfo.td index 9e2f79f..0d502fd 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)>;  }  | 
