mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 08:44:48 +00:00
Align stubs on 4 byte boundary. This fixes 447.dealII.
llvm-svn: 31790
This commit is contained in:
parent
49d6a1169f
commit
c653e70b2d
@ -288,13 +288,13 @@ void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
|
||||
bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
|
||||
#endif
|
||||
if (NotCC) {
|
||||
MCE.startFunctionStub(5);
|
||||
MCE.startFunctionStub(5, 4);
|
||||
MCE.emitByte(0xE9);
|
||||
MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
|
||||
return MCE.finishFunctionStub(0);
|
||||
}
|
||||
|
||||
MCE.startFunctionStub(6);
|
||||
MCE.startFunctionStub(6, 4);
|
||||
MCE.emitByte(0xE8); // Call with 32 bit pc-rel destination...
|
||||
|
||||
MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);
|
||||
|
Loading…
x
Reference in New Issue
Block a user