aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-08-29 23:24:15 +0000
committerJim Grosbach <grosbach@apple.com>2011-08-29 23:24:15 +0000
commitd3765189bfb8c0dd3aa377aaf2d644f321ea8e5a (patch)
treeaa5625e4dd68f5b85cf444760fa2d4a97858408a
parente94a5b1218b9b5646da7f41f2020a1f024e2d0be (diff)
Revert 138781. It's not playing nicely with the immediate forms for ADC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138782 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMInstrThumb2.td20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td
index c57b882f18..3c193ac80f 100644
--- a/lib/Target/ARM/ARMInstrThumb2.td
+++ b/lib/Target/ARM/ARMInstrThumb2.td
@@ -3519,23 +3519,3 @@ def : T2Pat<(atomic_store_32 t2addrmode_imm8:$addr, GPR:$val),
(t2STRi8 GPR:$val, t2addrmode_imm8:$addr)>;
def : T2Pat<(atomic_store_32 t2addrmode_so_reg:$addr, GPR:$val),
(t2STRs GPR:$val, t2addrmode_so_reg:$addr)>;
-
-
-//===----------------------------------------------------------------------===//
-// Assembler aliases
-//
-
-// Aliases for ADC without the ".w" optional width specifier.
-def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $Rm",
- (t2ADCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
-def : t2InstAlias<"adc${s}${p} $Rd, $Rn, $ShiftedRm",
- (t2ADCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
- pred:$p, cc_out:$s)>;
-
-// Aliases for SBC without the ".w" optional width specifier.
-def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $Rm",
- (t2SBCrr rGPR:$Rd, rGPR:$Rn, rGPR:$Rm, pred:$p, cc_out:$s)>;
-def : t2InstAlias<"sbc${s}${p} $Rd, $Rn, $ShiftedRm",
- (t2SBCrs rGPR:$Rd, rGPR:$Rn, t2_so_reg:$ShiftedRm,
- pred:$p, cc_out:$s)>;
-