aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/top.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@rabi.columbia.edu>1999-02-01 14:50:40 +0000
committerZack Weinberg <zack@gcc.gnu.org>1999-02-01 14:50:40 +0000
commit1328d92f8159120827a74b3488d845dc36de9d9b (patch)
tree800714f8fb6a9386ed9f192e9da606f8930d9783 /gcc/f/top.c
parentc68da89c455fce41d03acecff5883099b1c97424 (diff)
downloadgcc-1328d92f8159120827a74b3488d845dc36de9d9b.zip
gcc-1328d92f8159120827a74b3488d845dc36de9d9b.tar.gz
gcc-1328d92f8159120827a74b3488d845dc36de9d9b.tar.bz2
top.c: Don't define ffe_is_ident_.
1999-02-01 Zack Weinberg <zack@rabi.columbia.edu> * top.c: Don't define ffe_is_ident_. Don't process -f(no-)ident here. * top.h: Remove declaration of ffe_is_ident_ and macros ffe_is_ident() and ffe_set_is_ident(). * lex.c: Use flag_no_ident instead of ffe_is_ident(). From-SVN: r24957
Diffstat (limited to 'gcc/f/top.c')
-rw-r--r--gcc/f/top.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/f/top.c b/gcc/f/top.c
index fe5bc40..588d4ed 100644
--- a/gcc/f/top.c
+++ b/gcc/f/top.c
@@ -76,7 +76,6 @@ bool ffe_is_f2c_library_ = FFETARGET_defaultIS_F2C_LIBRARY;
bool ffe_is_ffedebug_ = FALSE;
bool ffe_is_free_form_ = FFETARGET_defaultIS_FREE_FORM;
bool ffe_is_globals_ = TRUE;
-bool ffe_is_ident_ = TRUE;
bool ffe_is_init_local_zero_ = FFETARGET_defaultIS_INIT_LOCAL_ZERO;
bool ffe_is_mainprog_; /* TRUE if current prog unit known to be
main. */
@@ -177,10 +176,6 @@ ffe_decode_option (argc, argv)
}
else if (strcmp (&opt[2], "null-version") == 0)
ffe_set_is_null_version (TRUE);
- else if (strcmp (&opt[2], "ident") == 0)
- ffe_set_is_ident (TRUE);
- else if (strcmp (&opt[2], "no-ident") == 0)
- ffe_set_is_ident (FALSE);
else if (strcmp (&opt[2], "f66") == 0)
{
ffe_set_is_onetrip (TRUE);