From: Andres Freund Date: Mon, 23 Jul 2018 04:05:06 +0000 (-0700) Subject: LLVMJIT: Fix LLVM build for LLVM > 7. X-Git-Tag: REL_12_BETA1~1831 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a38b833a7ca41c9f68fbaebc93762627ea527c26;p=postgresql LLVMJIT: Fix LLVM build for LLVM > 7. The location of LLVMAddPromoteMemoryToRegisterPass moved. Author: Andres Freund Backpatch: 11, where LLVM based JIT support was added. --- diff --git a/src/backend/jit/llvm/llvmjit.c b/src/backend/jit/llvm/llvmjit.c index 5d0cdab1fc..955c966713 100644 --- a/src/backend/jit/llvm/llvmjit.c +++ b/src/backend/jit/llvm/llvmjit.c @@ -34,6 +34,9 @@ #include #include #include +#if LLVM_VERSION_MAJOR > 6 +#include +#endif /* Handle of a module emitted via ORC JIT */