mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-04 14:33:21 +02:00
* the definition of CORE_ADDR moved from gdbmiint to gdbmiwrap, because we're
going to use it there as well git-svn-id: trunk@30069 -
This commit is contained in:
parent
6be3b8cc63
commit
2adee6834c
@ -27,12 +27,7 @@ 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}
|
||||
CORE_ADDR = gdbmiwrap.CORE_ADDR;
|
||||
|
||||
PPFrameEntry = ^PFrameEntry;
|
||||
PFrameEntry = ^TFrameEntry;
|
||||
|
@ -26,6 +26,13 @@ uses
|
||||
SysUtils, Classes, GDBMIProc;
|
||||
|
||||
type
|
||||
{$ifdef TARGET_IS_64BIT}
|
||||
{ force 64bit if target compilation CPU is 64-bit address CPU }
|
||||
CORE_ADDR = Qword;
|
||||
{$else}
|
||||
CORE_ADDR = PtrInt;
|
||||
{$endif}
|
||||
|
||||
TGDBMI_TupleValue = class;
|
||||
TGDBMI_ListValue = class;
|
||||
TGDBMI_Value = class
|
||||
|
Loading…
Reference in New Issue
Block a user