ChangeLog: Correct entry.
authorTobias Burnus <burnus@gcc.gnu.org>
Tue, 24 Jul 2007 12:58:20 +0000 (14:58 +0200)
committerTobias Burnus <burnus@gcc.gnu.org>
Tue, 24 Jul 2007 12:58:20 +0000 (14:58 +0200)
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

gcc/fortran/ChangeLog
libgfortran/ChangeLog
libgfortran/libgfortran.h

index 745343e..fbfe389 100644 (file)
@@ -1,13 +1,10 @@
 2007-07-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
        PR fortran/30814
-       * libgfortran.h:  Add bounds_check to compile_options_t.
-       * runtime/compile_options.c (set_options):  Add handling
-       of compile_options.bounds_check.
-       * intrinsics/pack_generic.c (pack_internal):  Also determine
-       the number of elements if compile_options.bounds_check is
-       true.  Raise runtime error if a different array shape is
-       detected.
+       * trans-decl.c (generate_function_code):  Add argument
+       for flag_bounds_check to the array for set_options.
+       * invoke.texi (-fbounds-check): Document new libarary run-time
+       behaviour.
 
 2007-07-23  Daniel Franke  <franke.daniel@gmail.com>
 
index 658d702..2b63dd1 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
        PR fortran/30814
index e0cfa45..a1efab2 100644 (file)
@@ -385,6 +385,7 @@ typedef struct
   int sign_zero;
   size_t record_marker;
   int max_subrecord_length;
+  int bounds_check;
 }
 compile_options_t;