mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
* better code for ... downto 1 for-loops
This commit is contained in:
parent
45f7be1b3c
commit
798f2ba632
@ -2103,7 +2103,16 @@ implementation
|
||||
else
|
||||
toexpr:=t1.getcopy;
|
||||
|
||||
addstatement(ifstatements,cwhilerepeatnode.create(caddnode.create_internal(cond,leftcopy,toexpr),loopblock,false,true));
|
||||
{ checking against zero might improve the generated assembler,
|
||||
doing this transformation for other values is normally not beneficial }
|
||||
if do_loopvar_at_end and (lnf_backward in loopflags) and is_constintnode(toexpr) and (tordconstnode(toexpr).value=1) and
|
||||
(countermin<tordconstnode(toexpr).value) then
|
||||
begin
|
||||
tordconstnode(toexpr).value:=tordconstnode(toexpr).value-1;
|
||||
addstatement(ifstatements,cwhilerepeatnode.create(caddnode.create_internal(equaln,leftcopy,toexpr),loopblock,false,true))
|
||||
end
|
||||
else
|
||||
addstatement(ifstatements,cwhilerepeatnode.create(caddnode.create_internal(cond,leftcopy,toexpr),loopblock,false,true));
|
||||
|
||||
if usefromtemp then
|
||||
fromexpr:=ctemprefnode.create(fromtemp)
|
||||
|
Loading…
Reference in New Issue
Block a user