summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2014-05-14 12:55:50 +0100
committerJosé Fonseca <jfonseca@vmware.com>2014-05-23 11:37:47 +0100
commit172ef0c5a5a97c211702eb4033eeaac20993350e (patch)
tree75cfb42f9693416d3ec2a51f2d030dec8faae406 /src/gallium/auxiliary
parent2c02f34fccee563e22db70cbfb03fb2cc7da30f9 (diff)
gallivm: Disable workaround for PR12833 on LLVM 3.2+.
Fixed upstream.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_misc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
index d1cc9b67b6c..38fbe1fc7e5 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
@@ -484,11 +484,11 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
builder.setJITMemoryManager(MM);
ExecutionEngine *JIT;
-#if 0
+#if HAVE_LLVM >= 0x0302
JIT = builder.create();
#else
/*
- * Workaround http://llvm.org/bugs/show_bug.cgi?id=12833
+ * Workaround http://llvm.org/PR12833
*/
StringRef MArch = "";
StringRef MCPU = "";