mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 04:43:46 +02:00
Use QWORD for CORE_ADDR if TARGET_IS_64BIT macro is set
git-svn-id: trunk@30064 -
This commit is contained in:
parent
dfb21140a2
commit
cec67ade78
@ -25,7 +25,12 @@ uses
|
||||
gdbmiwrap;
|
||||
|
||||
type
|
||||
{$ifdef TARGET_IS_64BIT}
|
||||
{ force 64bit if target compilation CPU is 64-bit address CPU }
|
||||
CORE_ADDR = Qword;
|
||||
{$else}
|
||||
CORE_ADDR = PtrInt;
|
||||
{$endif}
|
||||
|
||||
PPFrameEntry = ^PFrameEntry;
|
||||
PFrameEntry = ^TFrameEntry;
|
||||
|
Loading…
Reference in New Issue
Block a user