mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:07:56 +02:00
* Calling "internalstatements" now sets the "bnf_strippable" flag on the result
This commit is contained in:
parent
060a7185ab
commit
5a9d4d44fa
@ -383,7 +383,8 @@ implementation
|
||||
begin
|
||||
{ create dummy initial statement }
|
||||
laststatement := cstatementnode.create(cnothingnode.create,nil);
|
||||
internalstatements := cblocknode.create(laststatement);
|
||||
result := cblocknode.create(laststatement);
|
||||
Include(result.blocknodeflags, bnf_strippable);
|
||||
end;
|
||||
|
||||
|
||||
|
@ -908,6 +908,8 @@ implementation
|
||||
an try...finally...end wrapper }
|
||||
current_filepos:=entrypos;
|
||||
newblock:=internalstatements(newstatement);
|
||||
{ Note - this is not strippable since it wraps the entire procedure }
|
||||
Exclude(TBlockNode(newblock).blocknodeflags, bnf_strippable);
|
||||
{ initialization is common for all cases }
|
||||
addstatement(newstatement,loadpara_asmnode);
|
||||
addstatement(newstatement,stackcheck_asmnode);
|
||||
|
Loading…
Reference in New Issue
Block a user