mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 18:25:58 +02:00
* make the resultdef of left and right equal when comparing a dynarray
with nil (for llvm) git-svn-id: trunk@32902 -
This commit is contained in:
parent
f5a3bab7d4
commit
4ae8dcc91e
@ -1995,6 +1995,10 @@ implementation
|
|||||||
begin
|
begin
|
||||||
if not(nodetype in [equaln,unequaln]) then
|
if not(nodetype in [equaln,unequaln]) then
|
||||||
CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
|
CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
|
||||||
|
if lt=niln then
|
||||||
|
inserttypeconv_explicit(left,right.resultdef)
|
||||||
|
else
|
||||||
|
inserttypeconv_explicit(right,left.resultdef)
|
||||||
end
|
end
|
||||||
|
|
||||||
{$ifdef SUPPORT_MMX}
|
{$ifdef SUPPORT_MMX}
|
||||||
|
Loading…
Reference in New Issue
Block a user