mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
* patch by Zoran Vučenović: fixes TDoubleRec.SetFrac, resolves #38202
+ test git-svn-id: trunk@47765 -
This commit is contained in:
parent
c82aae59a1
commit
53a4e6c513
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -18605,6 +18605,7 @@ tests/webtbs/tw3814.pp svneol=native#text/plain
|
||||
tests/webtbs/tw38145a.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38145b.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38151.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38202.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw3827.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3829.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3833.pp svneol=native#text/plain
|
||||
|
@ -2087,7 +2087,7 @@ function TDoubleRec.GetFrac : QWord;
|
||||
|
||||
procedure TDoubleRec.SetFrac(e : QWord);
|
||||
begin
|
||||
Data:=(Data and $7ff0000000000000) or (e and $fffffffffffff);
|
||||
Data:=(Data and $fff0000000000000) or (e and $fffffffffffff);
|
||||
end;
|
||||
|
||||
{
|
||||
|
21
tests/webtbs/tw38202.pp
Normal file
21
tests/webtbs/tw38202.pp
Normal file
@ -0,0 +1,21 @@
|
||||
program Project1;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
var
|
||||
D: Double;
|
||||
Q: QWord;
|
||||
|
||||
begin
|
||||
D := -1;
|
||||
|
||||
Q := D.Frac;
|
||||
D.Frac := Q; // the sign is lost!
|
||||
|
||||
if D<>-1 then
|
||||
halt(1);
|
||||
WriteLn('ok');
|
||||
end.
|
Loading…
Reference in New Issue
Block a user