mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 00:47:52 +02:00
* the right side of a concatenation of multiple ShortString values can directly pass any String[x] to the utility routine, because only the Length() is used, not High() and nothing is modified (also typed pointers must not be used for them); this allows for better code generation for strings with a maximum length < 255
This commit is contained in:
parent
3e181d7640
commit
bb51ac77dd
@ -320,18 +320,19 @@ begin
|
||||
while assigned(hp) and (hp.nodetype=addn) do
|
||||
begin
|
||||
sn:=taddnode(hp).right.getcopy;
|
||||
inserttypeconv(sn,p.resultdef);
|
||||
if not is_shortstr or not is_shortstring(sn.resultdef) then
|
||||
inserttypeconv(sn,p.resultdef);
|
||||
if is_shortstr then
|
||||
begin
|
||||
sn:=caddrnode.create(sn);
|
||||
include(taddrnode(sn).addrnodeflags,anf_typedaddr);
|
||||
include(sn.flags,nf_internal);
|
||||
end;
|
||||
arrp:=carrayconstructornode.create(sn,arrp);
|
||||
hp:=taddnode(hp).left;
|
||||
end;
|
||||
sn:=hp.getcopy;
|
||||
inserttypeconv(sn,p.resultdef);
|
||||
if not is_shortstr or not is_shortstring(sn.resultdef) then
|
||||
inserttypeconv(sn,p.resultdef);
|
||||
if is_shortstr then
|
||||
begin
|
||||
sn:=caddrnode.create(sn);
|
||||
|
Loading…
Reference in New Issue
Block a user