fpc/tests/tbs/tb0658.pp
Jonas Maebe ce598c15ec * factored out the conditions under which add nodes need to perform
overflow checks
   o in particular ensure that cpu-specific overrides don't perform overflow
     checks when nf_internal is set

git-svn-id: trunk@42573 -
2019-08-03 12:19:50 +00:00

12 lines
113 B
ObjectPascal

{$r+,q+}
procedure test(i: int64);
begin
if (i>0) and (i<$1fff) then
halt(1);
end;
begin
test(0);
end.