diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-04 15:18:48 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-04 15:18:48 +0000 |
commit | ed825f1d02a461094a691c8469a71a82a79280c0 (patch) | |
tree | 5551ed792ad3f21c6705d16b1ca3f5d97d6659c1 /libgfortran/libgfortran.h | |
parent | 707bff495c5ac72c0d591172fd6b45b5fa723b46 (diff) | |
download | gcc-ed825f1d02a461094a691c8469a71a82a79280c0.tar.gz |
PR libfortran/32021
* runtime/environ.c (init_mem, show_mem, init_round, show_round,
init_precision, show_precision, init_signal, show_signal): Remove.
(variable_table): Remove GFORTRAN_MEM_INIT, GFORTRAN_MEM_CHECK,
GFORTRAN_SIGHUP, GFORTRAN_SIGINT, GFORTRAN_FPU_ROUND and
GFORTRAN_FPU_PRECISION.
* libgfortran.h (options_t): Remove mem_check, fpu_round,
fpu_precision, sighup, sigint, allocate_init_flag and
allocate_init_value.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129014 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r-- | libgfortran/libgfortran.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index 6a702c4b351..8d80998423d 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -344,19 +344,13 @@ typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_16) gfc_array_l16; typedef struct { int stdin_unit, stdout_unit, stderr_unit, optional_plus; - int allocate_init_flag, allocate_init_value; int locus; int separator_len; const char *separator; - int mem_check; int use_stderr, all_unbuffered, default_recl; - - int fpu_round, fpu_precision, fpe; - - int sighup, sigint; - int dump_core, backtrace; + int fpe, dump_core, backtrace; } options_t; |