From: Cameron Zwarich Date: Tue, 17 May 2011 23:11:12 +0000 (+0000) Subject: Correct a minor problem with the Thumb2 LDREX and STREX instruction encodings. They X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3c60ff4f3da9671597ed8fadd775255902616b71;p=oota-llvm.git Correct a minor problem with the Thumb2 LDREX and STREX instruction encodings. They were marked as taking a tGPR when in reality they take an rGPR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131506 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 25b39ba9752..5e63ed5912a 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -158,7 +158,7 @@ def t2addrmode_so_reg : Operand, // def t2addrmode_reg : Operand { let PrintMethod = "printAddrMode7Operand"; - let MIOperandInfo = (ops tGPR); + let MIOperandInfo = (ops rGPR); let ParserMatchClass = MemMode7AsmOperand; }