diff options
| author | Jim Grosbach <grosbach@apple.com> | 2011-07-06 20:57:35 +0000 | 
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2011-07-06 20:57:35 +0000 | 
| commit | 4db363af7c128da9fe01eb884efb1d5f3431ee24 (patch) | |
| tree | a14ed54afbf81ac8e9c18f8ed8b031d2b5452151 /llvm | |
| parent | 499647bfc3f1345a5b47d3e6c97c49ddb675f7e7 (diff) | |
| download | bcm5719-llvm-4db363af7c128da9fe01eb884efb1d5f3431ee24.tar.gz bcm5719-llvm-4db363af7c128da9fe01eb884efb1d5f3431ee24.zip  | |
Remove un-used encoding info from Pseudo MLAv5.
Pseudo-instructions don't have encoding information, as they're lowered
to real instructions by the time we're doing binary encoding.
llvm-svn: 134533
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.td | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index ed979e76fdd..a5bd79db9f4 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -2698,10 +2698,7 @@ def MLAv5: ARMPseudoInst<(outs GPR:$Rd),                          (ins GPR:$Rn, GPR:$Rm, GPR:$Ra, pred:$p, cc_out:$s),                          Size4Bytes, IIC_iMAC32,                          [(set GPR:$Rd, (add (mul GPR:$Rn, GPR:$Rm), GPR:$Ra))]>, -                        Requires<[IsARM, NoV6]> { -  bits<4> Ra; -  let Inst{15-12} = Ra; -} +                        Requires<[IsARM, NoV6]>;  def MLA  : AsMul1I32<0b0000001, (outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm, GPR:$Ra),                      IIC_iMAC32, "mla", "\t$Rd, $Rn, $Rm, $Ra",                     [(set GPR:$Rd, (add (mul GPR:$Rn, GPR:$Rm), GPR:$Ra))]>,  | 

