* omit first not, helps the reg. allocator to find a workable colouring, resolves #36611

git-svn-id: trunk@44005 -
(cherry picked from commit ae8d2dc69a)
This commit is contained in:
florian 2020-01-20 21:13:34 +00:00
parent 23d26d495f
commit ce336a08c5

View File

@ -530,14 +530,16 @@
sign : boolean;
q1,q2,q3 : qword;
begin
sign:=false;
if f1<0 then
begin
sign:=not(sign);
q1:=qword(-f1);
sign:=true;
end
else
q1:=f1;
begin
q1:=f1;
sign:=false;
end;
if f2<0 then
begin
sign:=not(sign);