mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-27 08:11:27 +01:00
* fix for OS/2 - StackTop is a pointer now
git-svn-id: trunk@3177 -
This commit is contained in:
parent
c1608ad89b
commit
ad14231358
@ -815,7 +815,7 @@ begin
|
|||||||
{$IFDEF OS2}
|
{$IFDEF OS2}
|
||||||
{ inside stack ? }
|
{ inside stack ? }
|
||||||
if (PtrUInt (P) > PtrUInt (Get_Frame)) and
|
if (PtrUInt (P) > PtrUInt (Get_Frame)) and
|
||||||
(PtrUInt (P) < StackTop) then
|
(PtrUInt (P) < PtrUInt (StackTop)) then
|
||||||
goto _exit;
|
goto _exit;
|
||||||
{ inside data or bss ? }
|
{ inside data or bss ? }
|
||||||
if (PtrUInt (P) >= PtrUInt (@etext)) and (PtrUInt (P) < PtrUInt (@eend)) then
|
if (PtrUInt (P) >= PtrUInt (@etext)) and (PtrUInt (P) < PtrUInt (@eend)) then
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user