From 20674089bd3306c2b2b9bef14647e9c41c6499c8 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Tue, 26 Apr 2022 20:26:47 +0200 Subject: [PATCH] llvmdbg: add declaration for all DISPFlags --- compiler/llvm/dbgllvm.pas | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/compiler/llvm/dbgllvm.pas b/compiler/llvm/dbgllvm.pas index df06326ded..d3e07567e5 100644 --- a/compiler/llvm/dbgllvm.pas +++ b/compiler/llvm/dbgllvm.pas @@ -253,6 +253,21 @@ implementation } ); + TLLVMDISPFlags = ( + DISPFlagVirtual = 1, + DISPFlagPureVirtual = 2, + DISPFlagLocalToUnit = 1 shl 2, + DISPFlagDefinition = 1 shl 3, + DISPFlagOptimized = 1 shl 4, + DISPFlagPure = 1 shl 5, + DISPFlagElemental = 1 shl 6, + DISPFlagRecursive = 1 shl 7, + DISPFlagMainSubprogram = 1 shl 8, + DISPFlagDeleted = 1 shl 9, + DISPFlagObjCDirect = 1 shl 11 + ); + + {$pop} TLLVMLocationAtom = (