From 1328d92f8159120827a74b3488d845dc36de9d9b Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Mon, 1 Feb 1999 14:50:40 +0000 Subject: top.c: Don't define ffe_is_ident_. 1999-02-01 Zack Weinberg * 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 --- gcc/f/top.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'gcc/f/top.c') 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); -- cgit v1.1