From: Jim Grosbach Date: Tue, 16 Feb 2010 20:35:59 +0000 (+0000) Subject: Remove redundant setting of Defs. CPSR is already marked by the block level set of... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cd862b19b8348ad5bc21c9fa95d08427c86aa053;p=oota-llvm.git 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 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 3563a8141ee..35d8adfee8e 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -565,7 +565,6 @@ multiclass AI1_adde_sube_s_irs 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 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 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; }