* fix compilation on targets that don't have a RawThunk defined yet

git-svn-id: trunk@42720 -
This commit is contained in:
svenbarth 2019-08-17 15:36:01 +00:00
parent 7d9b249def
commit 9cac24a325

View File

@ -831,9 +831,6 @@ end;
label
RawThunkEnd;
const
RawThunkEndPtr: Pointer = @RawThunkEnd;
{$if defined(cpui386)}
const
RawThunkPlaceholderBytesToPop = $12341234;
@ -869,6 +866,9 @@ end;
{$endif}
{$if declared(RawThunk)}
const
RawThunkEndPtr: Pointer = @RawThunkEnd;
type
{$if declared(TRawThunkBytesToPop)}
PRawThunkBytesToPop = ^TRawThunkBytesToPop;