mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
parent
d9f05d341d
commit
30e0df384d
@ -1495,7 +1495,7 @@ implementation
|
||||
begin
|
||||
Result:=getcopy;
|
||||
taddnode(Result).left.nodetype:=addn;
|
||||
taddnode(left).right:=cunaryminusnode.create(taddnode(left).right);
|
||||
taddnode(taddnode(Result).left).right:=cunaryminusnode.create(taddnode(taddnode(Result).left).right);
|
||||
exit;
|
||||
end;
|
||||
|
||||
|
@ -4,38 +4,54 @@ label A0, A1, B0, B1, C0, C1, D0, D1;
|
||||
|
||||
var
|
||||
x, y: single;
|
||||
dontDrop: string;
|
||||
size: ptrint;
|
||||
|
||||
begin
|
||||
x := random;
|
||||
x := random(0);
|
||||
A0:
|
||||
y := x + 1 + 2 + 3 + 4 + 5 + 6; // folds
|
||||
A1:
|
||||
writestr(dontDrop, y);
|
||||
size:=CodePointer(@A1) - CodePointer(@A0);
|
||||
writeln('x + 1 + 2 + 3 + 4 + 5 + 6 = ', y, ' ', CodePointer(@A1) - CodePointer(@A0), ' b');
|
||||
if y <> 21 then
|
||||
begin
|
||||
writeln('Expected 21!');
|
||||
halt(1);
|
||||
end;
|
||||
|
||||
B0:
|
||||
y := x + 1 - 2 + 3 - 4 + 5 - 6; // doesn’t fold
|
||||
B1:
|
||||
writestr(dontDrop, y);
|
||||
if CodePointer(@B1) - CodePointer(@B0) > size then
|
||||
halt(1);
|
||||
writeln('x + 1 - 2 + 3 - 4 + 5 - 6 = ', y, ' ', CodePointer(@B1) - CodePointer(@B0), ' b');
|
||||
if y <> -3 then
|
||||
begin
|
||||
writeln('Expected -3!');
|
||||
halt(2);
|
||||
end;
|
||||
|
||||
C0:
|
||||
y := x - 1 - 2 - 3 - 4 - 5 - 6; // didn't fold at the time of making the issue, now folds
|
||||
C1:
|
||||
writestr(dontDrop, y);
|
||||
if CodePointer(@C1) - CodePointer(@C0) > size then
|
||||
halt(1);
|
||||
writeln('x - 1 - 2 - 3 - 4 - 5 - 6 = ', y, ' ', CodePointer(@C1) - CodePointer(@C0), ' b');
|
||||
if y <> -21 then
|
||||
begin
|
||||
writeln('Expected -21!');
|
||||
halt(3);
|
||||
end;
|
||||
|
||||
D0:
|
||||
y := x - 1 + 2 - 3 + 4 - 5 + 6; // didn't fold at the time of making the issue, now folds
|
||||
D1:
|
||||
writestr(dontDrop, y);
|
||||
if CodePointer(@D1) - CodePointer(@D0) > size then
|
||||
halt(1);
|
||||
writeln('x - 1 + 2 - 3 + 4 - 5 + 6 = ', y, ' ', CodePointer(@D1) - CodePointer(@D0), ' b');
|
||||
if y <> 3 then
|
||||
begin
|
||||
writeln('Expected 3!');
|
||||
halt(4);
|
||||
end;
|
||||
end.
|
||||
|
24
tests/webtbs/tw40041b.pp
Normal file
24
tests/webtbs/tw40041b.pp
Normal file
@ -0,0 +1,24 @@
|
||||
{$mode objfpc}
|
||||
function ShiftPM(x: single): single; noinline;
|
||||
begin
|
||||
result := x + 10.0 - 1.0;
|
||||
end;
|
||||
|
||||
function ShiftMP(x: single): single; noinline;
|
||||
begin
|
||||
result := x - 1.0 + 10.0;
|
||||
end;
|
||||
|
||||
begin
|
||||
if ShiftPM(5.0) <> 14.0 then
|
||||
begin
|
||||
writeln('ShiftPM: got ', ShiftPM(5.0):0:1, ', expected 14.0.');
|
||||
halt(1);
|
||||
end;
|
||||
|
||||
if ShiftMP(5.0) <> 14.0 then
|
||||
begin
|
||||
writeln('ShiftMP: got ', ShiftMP(5.0):0:1, ', expected 14.0.');
|
||||
halt(2);
|
||||
end;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user