1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-16 17:07:43 +03:00

jit: fix build with LLVM-21

LLVM-21 renamed llvm::GlobalValue::getGUID() to
getGUIDAssumingExternalLinkage(), so add a version guard.

Author: Holger Hoffstätte <holger@applied-asynchrony.com>
Discussion: https://www.postgresql.org/message-id/flat/d25e6e4a-d1b4-84d3-2f8a-6c45b975f53d%40applied-asynchrony.com
This commit is contained in:
Peter Eisentraut
2025-09-15 08:13:21 +02:00
parent 748caa9dcb
commit 282d0bdee6

View File

@@ -238,7 +238,11 @@ llvm_build_inline_plan(LLVMContextRef lc, llvm::Module *mod)
llvm_split_symbol_name(symbolName.data(), &cmodname, &cfuncname);
#if LLVM_VERSION_MAJOR >= 21
funcGUID = llvm::GlobalValue::getGUIDAssumingExternalLinkage(cfuncname);
#else
funcGUID = llvm::GlobalValue::getGUID(cfuncname);
#endif
/* already processed */
if (inlineState.processed)