From: Owen Anderson Date: Thu, 11 Aug 2011 22:10:11 +0000 (+0000) Subject: Make the USAT16 operand decoder auto-generate-able. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=41ff834e91a7f56dab18fbd7cdc03895197a923f;p=oota-llvm.git 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 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 0e10a974060..a400b7dfb08 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;