LLVMJIT: Fix LLVM build for LLVM > 7.

The location of LLVMAddPromoteMemoryToRegisterPass moved.

Author: Andres Freund
Backpatch: 11, where LLVM based JIT support was added.
This commit is contained in:
Andres Freund 2018-07-22 21:05:06 -07:00
parent 1307bc3d45
commit a38b833a7c
1 changed files with 3 additions and 0 deletions

View File

@ -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 */