LLVMJIT: Fix LLVM build for LLVM > 7.

The location of LLVMAddPromoteMemoryToRegisterPass moved.

Author: Andres Freund
Backpatch: 11, where LLVM based JIT support was added.
pull/34/head
Andres Freund 7 years ago
parent 1307bc3d45
commit a38b833a7c
  1. 3
      src/backend/jit/llvm/llvmjit.c

@ -34,6 +34,9 @@
#include <llvm-c/Transforms/IPO.h>
#include <llvm-c/Transforms/PassManagerBuilder.h>
#include <llvm-c/Transforms/Scalar.h>
#if LLVM_VERSION_MAJOR > 6
#include <llvm-c/Transforms/Utils.h>
#endif
/* Handle of a module emitted via ORC JIT */

Loading…
Cancel
Save