Unbreak x86-64 build.

llvm-svn: 30990
This commit is contained in:
Evan Cheng 2006-10-16 22:53:28 +00:00
parent f3ae00a64a
commit 1367ff084d
1 changed files with 9 additions and 2 deletions

View File

@ -256,6 +256,7 @@ TargetJITInfo::LazyResolverFn
X86JITInfo::getLazyResolverFunction(JITCompilerFn F) { X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
JITCompilerFunction = F; JITCompilerFunction = F;
#if !defined(__x86_64__)
unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0; unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
union { union {
unsigned u[3]; unsigned u[3];
@ -270,6 +271,7 @@ X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
return X86CompilationCallback_SSE; return X86CompilationCallback_SSE;
} }
} }
#endif
return X86CompilationCallback; return X86CompilationCallback;
} }
@ -277,8 +279,13 @@ X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) { void *X86JITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) {
// Note, we cast to intptr_t here to silence a -pedantic warning that // Note, we cast to intptr_t here to silence a -pedantic warning that
// complains about casting a function pointer to a normal pointer. // complains about casting a function pointer to a normal pointer.
if (Fn != (void*)(intptr_t)X86CompilationCallback && #if defined(__x86_64__)
Fn != (void*)(intptr_t)X86CompilationCallback_SSE) { bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
#else
bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
#endif
if (NotCC) {
MCE.startFunctionStub(5); MCE.startFunctionStub(5);
MCE.emitByte(0xE9); MCE.emitByte(0xE9);
MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4); MCE.emitWordLE((intptr_t)Fn-MCE.getCurrentPCValue()-4);