diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-02-16 20:35:59 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-02-16 20:35:59 +0000 |
commit | cd862b19b8348ad5bc21c9fa95d08427c86aa053 (patch) | |
tree | b38756c92d1b0ad2dfb24fc69b6360418c808f92 /lib/Target/ARM/ARMInstrInfo.td | |
parent | 3a02cbcd0310e6c63a4ac9b8d25fffc258c8b3e4 (diff) |
Remove redundant setting of Defs. CPSR is already marked by the block level set of Defs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrInfo.td')
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 3563a8141e..35d8adfee8 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -565,7 +565,6 @@ multiclass AI1_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode, DPFrm, IIC_iALUi, !strconcat(opc, "\t$dst, $a, $b"), [(set GPR:$dst, (opnode GPR:$a, so_imm:$b))]>, Requires<[IsARM]> { - let Defs = [CPSR]; let Inst{20} = 1; let Inst{25} = 1; } @@ -573,7 +572,6 @@ multiclass AI1_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode, DPFrm, IIC_iALUr, !strconcat(opc, "\t$dst, $a, $b"), [(set GPR:$dst, (opnode GPR:$a, GPR:$b))]>, Requires<[IsARM]> { - let Defs = [CPSR]; let Inst{11-4} = 0b00000000; let Inst{20} = 1; let Inst{25} = 0; @@ -582,7 +580,6 @@ multiclass AI1_adde_sube_s_irs<bits<4> opcod, string opc, PatFrag opnode, DPSoRegFrm, IIC_iALUsr, !strconcat(opc, "\t$dst, $a, $b"), [(set GPR:$dst, (opnode GPR:$a, so_reg:$b))]>, Requires<[IsARM]> { - let Defs = [CPSR]; let Inst{20} = 1; let Inst{25} = 0; } |