summaryrefslogtreecommitdiff
path: root/libgfortran/libgfortran.h
diff options
context:
space:
mode:
authorjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>2008-06-15 20:02:58 +0000
committerjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>2008-06-15 20:02:58 +0000
commit6cbaf5591bb3d441f5b159797d6d60ae85f90f44 (patch)
tree7dab0a0f3b00357fe532baef7d039ca7f882b94c /libgfortran/libgfortran.h
parentbd9c6afef4fdabb5d8566dacdcdaeb80b3a55acb (diff)
downloadgcc-6cbaf5591bb3d441f5b159797d6d60ae85f90f44.tar.gz
2008-06-15 Jerry DeLisle <jvdelisle@gcc.gnu.org>
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
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r--libgfortran/libgfortran.h1
1 files changed, 1 insertions, 0 deletions
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;