diff options
author | Owen Anderson <resistor@mac.com> | 2011-08-11 21:50:56 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-08-11 21:50:56 +0000 |
commit | 05b0c9f41e7c6a091bacdfc1472f99ef204ee00e (patch) | |
tree | ef0acd974be7312eae574c63a45052fbcbabe2ba | |
parent | ef8d6999f379c1a551d89b9cce7ca6dc7246fe52 (diff) |
Making SEL decodings auto-generate-able.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137363 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index fe7c60950e..0e10a97406 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1411,8 +1411,8 @@ def WFI : AI<(outs), (ins), MiscFrm, NoItinerary, "wfi", "", let Inst{7-0} = 0b00000011; } -def SEL : AI<(outs GPR:$dst), (ins GPR:$a, GPR:$b), DPFrm, NoItinerary, "sel", - "\t$dst, $a, $b", []>, Requires<[IsARM, HasV6]> { +def SEL : AI<(outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm), DPFrm, NoItinerary, "sel", + "\t$Rd, $Rn, $Rm", []>, Requires<[IsARM, HasV6]> { bits<4> Rd; bits<4> Rn; bits<4> Rm; |