summaryrefslogtreecommitdiff
path: root/gcc/f/top.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>1999-02-01 14:50:40 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>1999-02-01 14:50:40 +0000
commit44bb07ccbf3e2edbf6b5ca48077d7dd3a0ca5300 (patch)
tree800714f8fb6a9386ed9f192e9da606f8930d9783 /gcc/f/top.c
parent433c8fce75620744442557fc734fe9f1a37cde44 (diff)
downloadgcc-44bb07ccbf3e2edbf6b5ca48077d7dd3a0ca5300.tar.gz
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(). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24957 138bc75d-0d04-0410-961f-82ee72b054a4
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 fe5bc40c286..588d4ed64dc 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);