mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
* avoid that not explicitly as vectors marked arrays end up in registers where they are handled not properly
This commit is contained in:
parent
0977f0ac0d
commit
2ef405b3e5
@ -1551,12 +1551,12 @@ implementation
|
||||
function is_vector(p : tdef) : boolean;
|
||||
begin
|
||||
result:=(p.typ=arraydef) and
|
||||
(tarraydef(p).is_hwvector or
|
||||
(tarraydef(p).is_hwvector { or
|
||||
(not(is_special_array(p)) and
|
||||
(tarraydef(p).elementdef.typ in [floatdef,orddef]) {and
|
||||
(tarraydef(p).elementdef.typ in [floatdef,orddef]) and
|
||||
(tarraydef(p).elementdef.typ=floatdef) and
|
||||
(tfloatdef(tarraydef(p).elementdef).floattype in [s32real,s64real])}
|
||||
)
|
||||
(tfloatdef(tarraydef(p).elementdef).floattype in [s32real,s64real])
|
||||
) }
|
||||
);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user