mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Make sure to emit the immediate byte for instructions like:
shrd [mem], reg, imm This fixes the jit-ls failure on 186.crafty. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14914 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3b5e6e5f84
commit
42df461c90
@ -577,6 +577,8 @@ void Emitter::emitInstruction(const MachineInstr &MI) {
|
||||
case X86II::MRMDestMem:
|
||||
MCE.emitByte(BaseOpcode);
|
||||
emitMemModRMByte(MI, 0, getX86RegNum(MI.getOperand(4).getReg()));
|
||||
if (MI.getNumOperands() == 6)
|
||||
emitConstant(MI.getOperand(5).getImmedValue(), sizeOfImm(Desc));
|
||||
break;
|
||||
|
||||
case X86II::MRMSrcReg:
|
||||
|
Loading…
x
Reference in New Issue
Block a user