* also disable range check where overflow check is disabled

git-svn-id: trunk@14852 -
This commit is contained in:
pierre 2010-02-03 00:32:30 +00:00
parent 0d098f2dba
commit bc407ef6d3

View File

@ -3459,6 +3459,10 @@ implementation
{$ifopt Q+}
{$define overflowon}
{$Q-}
{$endif}
{$ifopt R+}
{$define rangeon}
{$R-}
{$endif}
if to_signed then
begin
@ -3481,6 +3485,10 @@ implementation
{$ifdef overflowon}
{$Q+}
{$undef overflowon}
{$endif}
{$ifdef rangeon}
{$R+}
{$undef rangeon}
{$endif}
end
end;