diff options
author | nickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2014-04-13 11:40:20 +0000 |
---|---|---|
committer | nickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2014-04-13 11:40:20 +0000 |
commit | 80334831d54e6fcd9a84b3293edbe7a036c1053e (patch) | |
tree | 52306097f4523d2b2cb5083258dec136d9cbfd12 /compiler/utils | |
parent | 35ebe188bab045b10dc09f50833028e54e432083 (diff) | |
download | fpc-80334831d54e6fcd9a84b3293edbe7a036c1053e.tar.gz |
* fixed the reading of x86 pointer defs in ppudump after the ppuwrite_platform
changes
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@27557 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/utils')
-rw-r--r-- | compiler/utils/ppuutils/ppudump.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/ppuutils/ppudump.pp b/compiler/utils/ppuutils/ppudump.pp index 0dee33373d..f220b622d3 100644 --- a/compiler/utils/ppuutils/ppudump.pp +++ b/compiler/utils/ppuutils/ppudump.pp @@ -2650,6 +2650,7 @@ begin readcommondef('Pointer definition',defoptions,def); write ([space,' Pointed Type : ']); readderef('',TPpuPointerDef(def).Ptr); + writeln([space,' Has Pointer Math : ',(getbyte<>0)]); if tsystemcpu(ppufile.header.cpu) in [cpu_i8086,cpu_i386,cpu_x86_64] then begin write([space,' X86 Pointer Type : ']); @@ -2668,7 +2669,6 @@ begin WriteWarning('Invalid x86 pointer type: ' + IntToStr(b)); end; end; - writeln([space,' Has Pointer Math : ',(getbyte<>0)]); end; iborddef : |