From 6cbaf5591bb3d441f5b159797d6d60ae85f90f44 Mon Sep 17 00:00:00 2001 From: jvdelisle Date: Sun, 15 Jun 2008 20:02:58 +0000 Subject: 2008-06-15 Jerry DeLisle PR fortran/36515 * libgfortran.h (compile_options_t): Add int range_check to structure. * runtime/compile_options.c (set_options): Add range_check option. (init_compile_options): Likewise. *io/read.c (read_decimal): Change overflow checks to include range_check. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@136822 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgfortran/libgfortran.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libgfortran/libgfortran.h') diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index 8c0f1b4a796..10439bd3e5a 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -477,6 +477,7 @@ typedef struct size_t record_marker; int max_subrecord_length; int bounds_check; + int range_check; } compile_options_t; -- cgit v1.2.1