diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-08-29 03:06:09 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-08-29 03:06:09 +0000 |
commit | 2c4b30ebca87b4578fcf7a45a0bb9dbe956f1ec0 (patch) | |
tree | 9bab3633ec1e6fed620c34960350dcee5febd78c | |
parent | ac3b93536227d7bc71f8c1cac429201131705d67 (diff) |
Name ANDflag to ANDS, which is less stupid.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112395 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 62f6ecd757..33c4eab64b 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -1632,8 +1632,8 @@ defm t2BIC : T2I_bin_w_irs<0b0001, "bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>; let Defs = [CPSR] in -defm t2ANDflag : T2I_bin_w_irs<0b0000, "and", - BinOpFrag<(ARMand node:$LHS, node:$RHS)>, 1>; +defm t2ANDS : T2I_bin_w_irs<0b0000, "and", + BinOpFrag<(ARMand node:$LHS, node:$RHS)>, 1>; let Constraints = "$src = $dst" in def t2BFC : T2I<(outs rGPR:$dst), (ins rGPR:$src, bf_inv_mask_imm:$imm), |