* 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:
nickysn 2015-03-02 12:20:13 +00:00
parent 6be3b8cc63
commit 2adee6834c
2 changed files with 8 additions and 6 deletions

View File

@ -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;

View File

@ -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