Browse Source

* switch to always using an unsigned type for CORE_ADDR

git-svn-id: trunk@30081 -
nickysn 10 years ago
parent
commit
54dcd555d0
2 changed files with 2 additions and 2 deletions
  1. 1 1
      ide/gdbmiwrap.pas
  2. 1 1
      packages/gdbint/src/gdbint.pp

+ 1 - 1
ide/gdbmiwrap.pas

@@ -30,7 +30,7 @@ type
   { force 64bit if target compilation CPU is 64-bit address CPU }
   CORE_ADDR = Qword;
 {$else}
-  CORE_ADDR = PtrInt;
+  CORE_ADDR = PtrUInt;
 {$endif}
 
   TGDBMI_TupleValue = class;

+ 1 - 1
packages/gdbint/src/gdbint.pp

@@ -721,7 +721,7 @@ type
 {$ifdef GDB_CORE_ADDR_FORCE_64BITS}
   CORE_ADDR = qword;
 {$else}
-  CORE_ADDR = ptrint; { might be target dependent PM }
+  CORE_ADDR = ptruint; { might be target dependent PM }
 {$endif}
 
   psyminfo=^tsyminfo;