From bafb5f8d9f415340d9035ee9430f9480da9a50fb Mon Sep 17 00:00:00 2001 From: Joey Gouly Date: Wed, 28 Aug 2013 14:33:35 +0000 Subject: [PATCH] [ARMv8] Add a missing IsThumb to t2LDAEXD. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189482 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMInstrThumb2.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index c8c9c9b9d74..0c5f169a02e 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -3260,7 +3260,7 @@ def t2LDAEXD : T2I_ldrex<0b1111, (outs rGPR:$Rt, rGPR:$Rt2), (ins addr_offset_none:$addr), AddrModeNone, 4, NoItinerary, "ldaexd", "\t$Rt, $Rt2, $addr", "", - [], {?, ?, ?, ?}>, Requires<[HasV8]> { + [], {?, ?, ?, ?}>, Requires<[IsThumb, HasV8]> { bits<4> Rt2; let Inst{11-8} = Rt2; -- 2.34.1