diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-09-27 13:02:01 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-09-27 13:02:01 +0200 |
commit | 2dad308e73c1d105e69e69b9268a871260d94b4e (patch) | |
tree | 19913fd3485f38ded34d3b19df7ccf22bdad4881 /src | |
parent | 54ccfd65868c013a8c6906bc894bc5ea3640740a (diff) | |
download | postgresql-2dad308e73c1d105e69e69b9268a871260d94b4e.tar.gz postgresql-2dad308e73c1d105e69e69b9268a871260d94b4e.zip |
llvmjit: Remove unnecessary types
These types were added in fb46ac26fe but hasn't been used, so
remove until there is a need for them.
Author: Andres Freund <andres@anarazel.de>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://postgr.es/m/20221101055132.pjjsvlkeo4stbjkq@awork3.anarazel.de
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/jit/llvm/llvmjit.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/backend/jit/llvm/llvmjit.c b/src/backend/jit/llvm/llvmjit.c index 09650e2c70a..fc0ccea329c 100644 --- a/src/backend/jit/llvm/llvmjit.c +++ b/src/backend/jit/llvm/llvmjit.c @@ -61,23 +61,12 @@ LLVMTypeRef TypeParamBool; LLVMTypeRef TypeStorageBool; LLVMTypeRef TypePGFunction; LLVMTypeRef StructNullableDatum; -LLVMTypeRef StructHeapTupleFieldsField3; -LLVMTypeRef StructHeapTupleFields; -LLVMTypeRef StructHeapTupleHeaderData; -LLVMTypeRef StructHeapTupleDataChoice; LLVMTypeRef StructHeapTupleData; -LLVMTypeRef StructMinimalTupleData; -LLVMTypeRef StructItemPointerData; -LLVMTypeRef StructBlockId; -LLVMTypeRef StructFormPgAttribute; -LLVMTypeRef StructTupleConstr; LLVMTypeRef StructTupleDescData; LLVMTypeRef StructTupleTableSlot; LLVMTypeRef StructHeapTupleTableSlot; LLVMTypeRef StructMinimalTupleTableSlot; LLVMTypeRef StructMemoryContextData; -LLVMTypeRef StructPGFinfoRecord; -LLVMTypeRef StructFmgrInfo; LLVMTypeRef StructFunctionCallInfoData; LLVMTypeRef StructExprContext; LLVMTypeRef StructExprEvalStep; |