* typeconvnodes are only equal if also their result type is equal

git-svn-id: trunk@14690 -
This commit is contained in:
florian 2010-01-17 10:07:44 +00:00
parent 22a5e7ef0a
commit 3c7f726f98

View File

@ -3018,7 +3018,8 @@ implementation
begin
docompare :=
inherited docompare(p) and
(convtype = ttypeconvnode(p).convtype);
(convtype = ttypeconvnode(p).convtype) and
equal_defs(resultdef,left.resultdef);
end;