From: Bill Wendling Date: Fri, 3 Dec 2010 00:53:22 +0000 (+0000) Subject: The tLDR instruction wasn't encoded properly: X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0bdf0c05b990b4f2d29719b34f4ce44f16176f09;p=oota-llvm.git The tLDR instruction wasn't encoded properly: > Notice that the "reg" here is 0, which is an invalid register. Put a check in the code for this to prevent crashing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120766 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMMCCodeEmitter.cpp b/lib/Target/ARM/ARMMCCodeEmitter.cpp index 4b059197ff0..d6926d9450e 100644 --- a/lib/Target/ARM/ARMMCCodeEmitter.cpp +++ b/lib/Target/ARM/ARMMCCodeEmitter.cpp @@ -642,8 +642,12 @@ static unsigned getAddrModeSOpValue(const MCInst &MI, unsigned OpIdx, const MCOperand &MO2 = MI.getOperand(OpIdx + 2); unsigned Rn = getARMRegisterNumbering(MO.getReg()); unsigned Imm5 = (MO1.getImm() / Scale) & 0x1f; - unsigned Rm = getARMRegisterNumbering(MO2.getReg()); - return (Rm << 3) | (Imm5 << 3) | Rn; + + if (MO2.getReg() != 0) + // Is an immediate. + Imm5 = getARMRegisterNumbering(MO2.getReg()); + + return (Imm5 << 3) | Rn; } /// getAddrModeS4OpValue - Return encoding for t_addrmode_s4 operands.