|
@@ -458,7 +458,11 @@ implementation
|
|
|
result := left.getcopy;
|
|
|
end;
|
|
|
end
|
|
|
+{$ifdef VER2_2}
|
|
|
+ else if (tordconstnode(right).value.svalue = -1) and (tordconstnode(right).value.signed) then
|
|
|
+{$else}
|
|
|
else if tordconstnode(right).value = -1 then
|
|
|
+{$endif}
|
|
|
begin
|
|
|
case nodetype of
|
|
|
muln:
|
|
@@ -488,7 +492,11 @@ implementation
|
|
|
result := right.getcopy;
|
|
|
end;
|
|
|
end
|
|
|
+{$ifdef VER2_2}
|
|
|
+ else if (tordconstnode(left).value.svalue = -1) and (tordconstnode(left).value.signed) then
|
|
|
+{$else}
|
|
|
else if tordconstnode(left).value = -1 then
|
|
|
+{$endif}
|
|
|
begin
|
|
|
case nodetype of
|
|
|
muln:
|