gallivm: Fix build with LLVM 3.3.
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 23 Oct 2014 09:42:12 +0000 (10:42 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 23 Oct 2014 09:42:12 +0000 (10:42 +0100)
The setMCJITMemoryManager method doesn't exist in LLVM 3.3.

I thought I had tested the latest version of my earlier change with LLVM
3.3, but it looks I missed it.

Trivial.

src/gallium/auxiliary/gallivm/lp_bld_misc.cpp

index 776af47909bbe0a53efeb61552aa8240c542d05e..6bc4d8142f6c1e8a24108019a09887b9a4230596 100644 (file)
@@ -493,11 +493,13 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
 
    ShaderMemoryManager *MM;
    if (useMCJIT) {
+#if HAVE_LLVM > 0x0303
        BaseMemoryManager* JMM = reinterpret_cast<BaseMemoryManager*>(CMM);
        MM = new ShaderMemoryManager(JMM);
        *OutCode = MM->getGeneratedCode();
 
        builder.setMCJITMemoryManager(MM);
+#endif
    } else {
 #if HAVE_LLVM < 0x0306
        BaseMemoryManager* JMM = reinterpret_cast<BaseMemoryManager*>(CMM);