Merge branch 'fixes_3_2' into release_3_2_4-branch

This commit is contained in:
florian 2024-09-23 21:47:44 +02:00
commit cd84c2d5cd
3 changed files with 11 additions and 5 deletions

View File

@ -131,7 +131,7 @@ implementation
fmodule, fmodule,
cpubase, cpubase,
tgobj,paramgr, tgobj,paramgr,
cgobj,hlcgobj,nutils cgobj,hlcgobj,nutils,node
; ;
{***************************************************************************** {*****************************************************************************
@ -512,7 +512,7 @@ implementation
procedure tcglabelnode.pass_generate_code; procedure tcglabelnode.pass_generate_code;
begin begin
location_reset(location,LOC_VOID,OS_NO); location_reset(location,LOC_VOID,OS_NO);
if not (nf_internal in flags) then
include(flowcontrol,fc_gotolabel); include(flowcontrol,fc_gotolabel);
{$ifdef OLDREGVARS} {$ifdef OLDREGVARS}
load_all_regvars(current_asmdata.CurrAsmList); load_all_regvars(current_asmdata.CurrAsmList);

View File

@ -2118,6 +2118,7 @@ implementation
result:=nil; result:=nil;
expectloc:=LOC_VOID; expectloc:=LOC_VOID;
if not (nf_internal in flags) then
include(current_procinfo.flags,pi_has_label); include(current_procinfo.flags,pi_has_label);
if assigned(labsym) and labsym.nonlocal then if assigned(labsym) and labsym.nonlocal then
@ -2223,6 +2224,7 @@ implementation
begin begin
third:=cinlinenode.create(in_get_frame,false,nil); third:=cinlinenode.create(in_get_frame,false,nil);
current_addr:=clabelnode.create(cnothingnode.create,clabelsym.create('$raiseaddr')); current_addr:=clabelnode.create(cnothingnode.create,clabelsym.create('$raiseaddr'));
current_addr.toggleflag(nf_internal);
addstatement(statements,current_addr); addstatement(statements,current_addr);
right:=caddrnode.create(cloadnode.create(current_addr.labsym,current_addr.labsym.owner)); right:=caddrnode.create(cloadnode.create(current_addr.labsym,current_addr.labsym.owner));
end; end;

View File

@ -75,14 +75,18 @@ TYPE
{ include /include/asm-<cpu>/posix-types.h } { include /include/asm-<cpu>/posix-types.h }
const const
{$ifndef cpux86_64} {$if not defined(cpux86_64) and not defined (cpuaarch64)}
_STAT_VER_LINUX_OLD = 1; _STAT_VER_LINUX_OLD = 1;
_STAT_VER_KERNEL = 1; _STAT_VER_KERNEL = 1;
_STAT_VER_SVR4 = 2; _STAT_VER_SVR4 = 2;
_STAT_VER_LINUX = 3; _STAT_VER_LINUX = 3;
{$else} {$else}
_STAT_VER_KERNEL = 0; _STAT_VER_KERNEL = 0;
{$if defined(cpuaarch64)}
_STAT_VER_LINUX = 0;
{$else}
_STAT_VER_LINUX = 1; _STAT_VER_LINUX = 1;
{$endif}
{$endif} {$endif}
_STAT_VER = _STAT_VER_LINUX; _STAT_VER = _STAT_VER_LINUX;