mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 05:08:06 +02:00
llvmdbg: add declaration for all DISPFlags
This commit is contained in:
parent
13055bb58a
commit
20674089bd
@ -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 = (
|
||||
|
Loading…
Reference in New Issue
Block a user