Unbreak build on x86-64.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49822 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2008-04-16 22:24:33 +00:00
parent 7e4d5b6002
commit 5e8fb81353

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