Commit 082b0571 by Jerry DeLisle

invoke.texi: Add documentation for runtime behavior of -fno-range-check.

2008-06-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	* invoke.texi: Add documentation for runtime behavior of
	-fno-range-check.

From-SVN: r137254
parent a5a6b586
2008-06-29 Jerry DeLisle <jvdelisle@gcc.gnu.org>
* invoke.texi: Add documentation for runtime behavior of
-fno-range-check.
2008-06-28 Daniel Kraft <d@domob.eu> 2008-06-28 Daniel Kraft <d@domob.eu>
* gfc-internals.texi (section gfc_code): Extended documentation about * gfc-internals.texi (section gfc_code): Extended documentation about
......
...@@ -156,8 +156,9 @@ and warnings}. ...@@ -156,8 +156,9 @@ and warnings}.
@item Runtime Options @item Runtime Options
@xref{Runtime Options,,Options for influencing runtime behavior}. @xref{Runtime Options,,Options for influencing runtime behavior}.
@gccoptlist{-fconvert=@var{conversion} -frecord-marker=@var{length} @gol @gccoptlist{-fconvert=@var{conversion} -fno-range-check
-fmax-subrecord-length=@var{length} -fsign-zero} -frecord-marker=@var{length} @gol -fmax-subrecord-length=@var{length}
-fsign-zero}
@item Code Generation Options @item Code Generation Options
@xref{Code Gen Options,,Options for code generation conventions}. @xref{Code Gen Options,,Options for code generation conventions}.
...@@ -938,6 +939,16 @@ representation for unformatted files. ...@@ -938,6 +939,16 @@ representation for unformatted files.
The @code{CONVERT} specifier and the GFORTRAN_CONVERT_UNIT environment The @code{CONVERT} specifier and the GFORTRAN_CONVERT_UNIT environment
variable override the default specified by @option{-fconvert}.} variable override the default specified by @option{-fconvert}.}
@item -fno-range-check
@opindex @code{-fno-range-check}
Disable range checking of input values during integer @code{READ} operations.
For example, GNU Fortran will give an error if an input value is
outside of the relevant range of [@code{-HUGE()}:@code{HUGE()}]. In other words,
with @code{INTEGER (kind=4) :: i} , attempting to read @math{-2147483648} will
give an error unless @option{-fno-range-check} is given.
@item -frecord-marker=@var{length} @item -frecord-marker=@var{length}
@opindex @code{frecord-marker=}@var{length} @opindex @code{frecord-marker=}@var{length}
Specify the length of record markers for unformatted files. Specify the length of record markers for unformatted files.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment