mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 03:28:40 +02:00
Avoid random values and range/overflow checks
git-svn-id: trunk@20600 -
This commit is contained in:
parent
bcf9a2deb3
commit
5b10c0c403
@ -1,3 +1,7 @@
|
||||
|
||||
{$R-}
|
||||
{$Q-}
|
||||
|
||||
const
|
||||
q2 : qword = 1234;
|
||||
i2 : int64 = -1234;
|
||||
@ -16,11 +20,13 @@ procedure p1(q : qword;i : int64);
|
||||
function f1 : qword;
|
||||
|
||||
begin
|
||||
f1:=1;
|
||||
end;
|
||||
|
||||
function f2 : int64;
|
||||
|
||||
begin
|
||||
f2:=-1;
|
||||
end;
|
||||
|
||||
var
|
||||
|
Loading…
Reference in New Issue
Block a user