Relax push instructions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2010-12-18 01:01:34 +00:00
parent 90862eeb7d
commit 1ee03a835e

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