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

Unbreak build on x86-64.

llvm-svn: 49822
This commit is contained in:
Dale Johannesen 2008-04-16 22:24:33 +00:00
parent 14ff970e58
commit d19ab27ee1

View File

@ -395,7 +395,7 @@ X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
void *X86JITInfo::emitGlobalValueLazyPtr(const GlobalValue* GV, void *ptr,
MachineCodeEmitter &MCE) {
#if defined (X86_64_JIT)
MCE.startFunctionStub(8, 8);
MCE.startFunctionStub(GV, 8, 8);
MCE.emitWordLE(((unsigned *)&ptr)[0]);
MCE.emitWordLE(((unsigned *)&ptr)[1]);
#else