Commit bdcfceb4 by Tobias Burnus

ChangeLog: Correct entry.

gcc/fortran/
2007-07-24  Tobias Burnus  <burnus@net-b.de>

	* ChangeLog: Correct entry.

libgfortran/
2007-07-24  Tobias Burnus  <burnus@net-b.de>

       * libgfortran.h:  Add bounds_check to compile_options_t.

From-SVN: r126877
parent 3886f1d0
2007-07-24 Thomas Koenig <tkoenig@gcc.gnu.org> 2007-07-24 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/30814 PR fortran/30814
* libgfortran.h: Add bounds_check to compile_options_t. * trans-decl.c (generate_function_code): Add argument
* runtime/compile_options.c (set_options): Add handling for flag_bounds_check to the array for set_options.
of compile_options.bounds_check. * invoke.texi (-fbounds-check): Document new libarary run-time
* intrinsics/pack_generic.c (pack_internal): Also determine behaviour.
the number of elements if compile_options.bounds_check is
true. Raise runtime error if a different array shape is
detected.
2007-07-23 Daniel Franke <franke.daniel@gmail.com> 2007-07-23 Daniel Franke <franke.daniel@gmail.com>
......
2007-07-24 Tobias Burnus <burnus@net-b.de>
* libgfortran.h: Add bounds_check to compile_options_t.
2007-07-24 Thomas Koenig <tkoenig@gcc.gnu.org> 2007-07-24 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/30814 PR fortran/30814
......
...@@ -385,6 +385,7 @@ typedef struct ...@@ -385,6 +385,7 @@ typedef struct
int sign_zero; int sign_zero;
size_t record_marker; size_t record_marker;
int max_subrecord_length; int max_subrecord_length;
int bounds_check;
} }
compile_options_t; compile_options_t;
......
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