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
This commit is contained in:
Cameron Zwarich 2011-05-17 23:11:12 +00:00
parent f5c95b889f
commit 3c60ff4f3d

View File

@ -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;
}