diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-05-17 23:11:12 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-05-17 23:11:12 +0000 |
commit | 3c60ff4f3da9671597ed8fadd775255902616b71 (patch) | |
tree | e6c8efde4f097e04f00da27f5e058aca0b1acf11 | |
parent | f5c95b889f270f170ff4f6a24b082be5bb68296e (diff) |
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
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 25b39ba975..5e63ed5912 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -158,7 +158,7 @@ def t2addrmode_so_reg : Operand<i32>, // def t2addrmode_reg : Operand<i32> { let PrintMethod = "printAddrMode7Operand"; - let MIOperandInfo = (ops tGPR); + let MIOperandInfo = (ops rGPR); let ParserMatchClass = MemMode7AsmOperand; } |