diff options
| author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-24 12:58:20 +0000 |
|---|---|---|
| committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-24 12:58:20 +0000 |
| commit | 7e5f0027679f0b2b3e1bcfd06d2e49f797e30615 (patch) | |
| tree | edda3a009e9c4688b9ea2c39a49489c75d9acdc0 | |
| parent | 9289fc25c2aef05da84a8edade48c259ef624ab8 (diff) | |
| download | ppe42-gcc-7e5f0027679f0b2b3e1bcfd06d2e49f797e30615.tar.gz ppe42-gcc-7e5f0027679f0b2b3e1bcfd06d2e49f797e30615.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126877 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/fortran/ChangeLog | 11 | ||||
| -rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
| -rw-r--r-- | libgfortran/libgfortran.h | 1 |
3 files changed, 9 insertions, 7 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 745343ed4e3..fbfe389a25b 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -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> diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 658d702668f..2b63dd1b494 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -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 diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index e0cfa450e29..a1efab26aa9 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -385,6 +385,7 @@ typedef struct int sign_zero; size_t record_marker; int max_subrecord_length; + int bounds_check; } compile_options_t; |

