Relax push instructions.

llvm-svn: 122121
This commit is contained in:
Rafael Espindola 2010-12-18 01:01:34 +00:00
parent 55a700b0cf
commit 625ccf8222
1 changed files with 3 additions and 0 deletions

View File

@ -188,6 +188,9 @@ static unsigned getRelaxedOpcodeArith(unsigned Op) {
case X86::CMP32mi8: return X86::CMP32mi;
case X86::CMP64ri8: return X86::CMP64ri32;
case X86::CMP64mi8: return X86::CMP64mi32;
// PUSH
case X86::PUSHi8: return X86::PUSHi32;
}
}