mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-15 07:59:33 +00:00
Unbreak x86_64 build.
llvm-svn: 80885
This commit is contained in:
parent
72cfe4f49c
commit
fa9e67ebbe
@ -408,8 +408,12 @@ TargetJITInfo::LazyResolverFn
|
||||
X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
|
||||
JITCompilerFunction = F;
|
||||
|
||||
return Subtarget->hasSSE1()
|
||||
? X86CompilationCallback_SSE : X86CompilationCallback;
|
||||
#if defined (X86_32_JIT) && !defined (_MSC_VER)
|
||||
if (Subtarget->hasSSE1())
|
||||
return X86CompilationCallback_SSE;
|
||||
#endif
|
||||
|
||||
return X86CompilationCallback;
|
||||
}
|
||||
|
||||
X86JITInfo::X86JITInfo(X86TargetMachine &tm) : TM(tm) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user