aboutsummaryrefslogtreecommitdiff
path: root/src/backend/jit/llvm/llvmjit_inline.cpp
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2020-05-28 15:08:12 -0700
committerAndres Freund <andres@anarazel.de>2020-05-28 15:24:28 -0700
commit6a4a335b841520739b7b2f0e608acdf3b814daad (patch)
tree668aa1cf90a49b2588dbe979540dc92ea8435ab1 /src/backend/jit/llvm/llvmjit_inline.cpp
parent9003b76e169e8524f8d7c7547aded4749b9c39a1 (diff)
downloadpostgresql-6a4a335b841520739b7b2f0e608acdf3b814daad.tar.gz
postgresql-6a4a335b841520739b7b2f0e608acdf3b814daad.zip
llvmjit: Fix building against LLVM 11 by removing unnecessary include.
LLVM has removed this header, in the branch that will become llvm 11. But as it turns out we didn't actually need it, so just remove it. Author: Jesse Zhang <sbjesse@gmail.com> Discussion: https://postgr.es/m/CAGf+fX7bvtP0YXMu7pOsu_NwhxW6dArTkxb=jt7M2-UJkyJ_3g@mail.gmail.com Backpatch: 11, where JIT support using llvm was introduced.
Diffstat (limited to 'src/backend/jit/llvm/llvmjit_inline.cpp')
-rw-r--r--src/backend/jit/llvm/llvmjit_inline.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/jit/llvm/llvmjit_inline.cpp b/src/backend/jit/llvm/llvmjit_inline.cpp
index 95d4d854f43..2617a461cad 100644
--- a/src/backend/jit/llvm/llvmjit_inline.cpp
+++ b/src/backend/jit/llvm/llvmjit_inline.cpp
@@ -56,7 +56,6 @@ extern "C"
#include <llvm/Support/Error.h>
#endif
#include <llvm/IR/Attributes.h>
-#include <llvm/IR/CallSite.h>
#include <llvm/IR/DebugInfo.h>
#include <llvm/IR/IntrinsicInst.h>
#include <llvm/IR/IRBuilder.h>