diff options
author | Thomas Munro <tmunro@postgresql.org> | 2022-10-19 22:38:58 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2022-10-19 22:38:58 +1300 |
commit | cf94cb58665a784acdf2091351b8c1ecb633263c (patch) | |
tree | faaa7ce1120a8cdfa16a330d8938e5a59e99a824 /src/backend/jit/llvm/llvmjit_inline.cpp | |
parent | 9f49b15b9d9753b5140d657c96cf6a2c2973e5e6 (diff) | |
download | postgresql-cf94cb58665a784acdf2091351b8c1ecb633263c.tar.gz postgresql-cf94cb58665a784acdf2091351b8c1ecb633263c.zip |
Track LLVM 15 changes.
Per https://llvm.org/docs/OpaquePointers.html, support for non-opaque
pointers still exists and we can request that on our context. We have
until LLVM 16 to move to opaque pointers, a much larger change.
Back-patch to 11, where LLVM support arrived.
Author: Thomas Munro <thomas.munro@gmail.com>
Author: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/CAMHz58Sf_xncdyqsekoVsNeKcruKootLtVH6cYXVhhUR1oKPCg%40mail.gmail.com
Diffstat (limited to 'src/backend/jit/llvm/llvmjit_inline.cpp')
-rw-r--r-- | src/backend/jit/llvm/llvmjit_inline.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/jit/llvm/llvmjit_inline.cpp b/src/backend/jit/llvm/llvmjit_inline.cpp index 01168cab41b..f675d0f9dbe 100644 --- a/src/backend/jit/llvm/llvmjit_inline.cpp +++ b/src/backend/jit/llvm/llvmjit_inline.cpp @@ -62,6 +62,7 @@ extern "C" #include <llvm/IR/ModuleSummaryIndex.h> #include <llvm/Linker/IRMover.h> #include <llvm/Support/ManagedStatic.h> +#include <llvm/Support/MemoryBuffer.h> /* |