mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00

* store a node's verbosity in the node so that e.g. disabling warnings also disables warnings for this node in pass_1 (the above together fix mantis #12076) * save/restore verbosity with {$push}/{$pop} (mantis #12075) * if warnings/notes/hints are turned off, also do not count encountered ones for the totals (otherwise -Sew cannot be used properly in combination with {$warnings off}, because disabled warnings will still trigger a compiler error) -- this required adding -vw/-vn/-vh to all tests using -Sew/-Sen/-Seh - removed some superfluous state saving/restoring from firstpass() git-svn-id: trunk@12025 -
62 lines
1.5 KiB
ObjectPascal
62 lines
1.5 KiB
ObjectPascal
{ %opt=-Sew -vw }
|
|
|
|
{ Source provided for Free Pascal Bug Report 4006 }
|
|
{ Submitted by "Torsten Kildal" on 2005-05-23 }
|
|
{ e-mail: kildal@mx }
|
|
program Val_Test;
|
|
{$IFDEF FPC}
|
|
{$MODE TP} {BP/TP compatible}
|
|
{$H-} {short strings!}
|
|
{$ENDIF}
|
|
|
|
{$R+}
|
|
|
|
VAR
|
|
s : string;
|
|
iVar : smallint;
|
|
lVar : longint; { BP7 = Borland Pascal }
|
|
rVar : real; { 1010 = FPC 1.0.10 }
|
|
iCode : integer; { 196 = FPC 1.9.6 }
|
|
wCode : word; { 200 = FPC 2.0.0 }
|
|
|
|
begin
|
|
s:='3.14'; {content plays no roll}
|
|
|
|
VAL(s,iVar,iCode);
|
|
{BP7 : ok}
|
|
{1010: ok}
|
|
{196 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
{200 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
|
|
VAL(s,lVar,iCode);
|
|
{BP7 : ok}
|
|
{1010: ok}
|
|
{196 : ok}
|
|
{200 : ok}
|
|
|
|
VAL(s,rVar,iCode);
|
|
{BP7 : ok}
|
|
{1010: ok}
|
|
{196 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
{200 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
(*
|
|
VAL(s,iVar,wCode);
|
|
{BP7 : ok}
|
|
{1010: ok}
|
|
{196 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
{200 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
|
|
VAL(s,lVar,wCode);
|
|
{BP7 : ok}
|
|
{1010: ok}
|
|
{196 : ok}
|
|
{200 : ok}
|
|
|
|
VAL(s,rVar,wCode);
|
|
{BP7 : ok}
|
|
{1010: ok}
|
|
{196 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
{200 : Warning: Type size mismatch, possible loss of data / range check error}
|
|
*)
|
|
end.
|