summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMInstrThumb2.td
diff options
context:
space:
mode:
authorRichard Barton <richard.barton@arm.com>2013-10-18 14:09:49 +0000
committerRichard Barton <richard.barton@arm.com>2013-10-18 14:09:49 +0000
commit485333df7157d6e8681d910d85b271b0bc96b48e (patch)
tree72080f6fdd1a74a53b41c491ed8dfe21f9996f6a /lib/Target/ARM/ARMInstrThumb2.td
parentc439c205ba304c7ed1c88fb85c2009e49cfbd0c3 (diff)
downloadllvm-485333df7157d6e8681d910d85b271b0bc96b48e.tar.gz
llvm-485333df7157d6e8681d910d85b271b0bc96b48e.tar.bz2
llvm-485333df7157d6e8681d910d85b271b0bc96b48e.tar.xz
Add hint disassembly syntax for 16-bit Thumb hint instructions.
Patch by Artyom Skrobov git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrThumb2.td')
-rw-r--r--lib/Target/ARM/ARMInstrThumb2.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td
index 636b96dde7..67dc4c12c3 100644
--- a/lib/Target/ARM/ARMInstrThumb2.td
+++ b/lib/Target/ARM/ARMInstrThumb2.td
@@ -3653,7 +3653,7 @@ def : t2InstAlias<"cps.w $mode", (t2CPS1p imm0_31:$mode), 0>;
// A6.3.4 Branches and miscellaneous control
// Table A6-14 Change Processor State, and hint instructions
-def t2HINT : T2I<(outs), (ins imm0_255:$imm), NoItinerary, "hint", "\t$imm",[]> {
+def t2HINT : T2I<(outs), (ins imm0_255:$imm), NoItinerary, "hint.w", "\t$imm",[]> {
bits<3> imm;
let Inst{31-3} = 0b11110011101011111000000000000;
let Inst{2-0} = imm;