* 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+} {$ifopt Q+}
{$define overflowon} {$define overflowon}
{$Q-} {$Q-}
{$endif}
{$ifopt R+}
{$define rangeon}
{$R-}
{$endif} {$endif}
if to_signed then if to_signed then
begin begin
@ -3481,6 +3485,10 @@ implementation
{$ifdef overflowon} {$ifdef overflowon}
{$Q+} {$Q+}
{$undef overflowon} {$undef overflowon}
{$endif}
{$ifdef rangeon}
{$R+}
{$undef rangeon}
{$endif} {$endif}
end end
end; end;