1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Actually, the address operand of the Thumb2 LDREX / STREX instructions *can*

take r13, so we can just make it a GPR. This fixes PR8825.

llvm-svn: 131507
This commit is contained in:
Cameron Zwarich 2011-05-17 23:26:20 +00:00
parent 15807bac51
commit ed470705c0

View File

@ -158,7 +158,7 @@ def t2addrmode_so_reg : Operand<i32>,
//
def t2addrmode_reg : Operand<i32> {
let PrintMethod = "printAddrMode7Operand";
let MIOperandInfo = (ops rGPR);
let MIOperandInfo = (ops GPR);
let ParserMatchClass = MemMode7AsmOperand;
}