diff options
author | Jose Fonseca <[email protected]> | 2016-06-10 15:42:55 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2016-06-10 16:17:04 +0100 |
commit | 2b4cee05715614acb9dd3823f5665199adcf97c2 (patch) | |
tree | 8dba8564c6d15f7d5e92a2c95cd26cb9ca49d258 /src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | |
parent | 320d1191c61a0a82444605c12e5c4b2ee0b241eb (diff) |
gallivm: Never emit llvm.fmuladd on LLVM 3.3.
Besides the old JIT bug, it seems the X86 backend on LLVM 3.3 doesn't
handle llvm.fmuladd and instead it fall backs to a C function. Which in
turn causes a segfault on Windows.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_misc.cpp')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp index 5ffe09c9a1b..23ef3edeae7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp @@ -570,7 +570,7 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, */ MAttrs.push_back(util_cpu_caps.has_avx ? "+avx" : "-avx"); MAttrs.push_back(util_cpu_caps.has_f16c ? "+f16c" : "-f16c"); - if (HAVE_LLVM >= 0x0304 || useMCJIT) { + if (HAVE_LLVM >= 0x0304) { MAttrs.push_back(util_cpu_caps.has_fma ? "+fma" : "-fma"); } else { /* |