1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Relax push instructions.

llvm-svn: 122121
This commit is contained in:
Rafael Espindola 2010-12-18 01:01:34 +00:00
parent 44a08d5812
commit ba05bec626

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