diff options
author | Owen Anderson <resistor@mac.com> | 2011-08-11 22:10:11 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-08-11 22:10:11 +0000 |
commit | 41ff834e91a7f56dab18fbd7cdc03895197a923f (patch) | |
tree | 55939b205a1510e93198d1b11153e0bbe76dfdfa | |
parent | adf2b094cb66e6b3ca318cf5b92d0b5232a7d420 (diff) |
Make the USAT16 operand decoder auto-generate-able.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137371 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 0e10a97406..a400b7dfb0 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -3191,8 +3191,8 @@ def USAT : AI<(outs GPRnopc:$Rd), } def USAT16 : AI<(outs GPRnopc:$Rd), - (ins imm0_15:$sat_imm, GPRnopc:$a), SatFrm, - NoItinerary, "usat16", "\t$Rd, $sat_imm, $a", + (ins imm0_15:$sat_imm, GPRnopc:$Rn), SatFrm, + NoItinerary, "usat16", "\t$Rd, $sat_imm, $Rn", [/* For disassembly only; pattern left blank */]> { bits<4> Rd; bits<4> sat_imm; |