mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 08:28:09 +02:00
* 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:
parent
23d26d495f
commit
ce336a08c5
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user