aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/lab.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-06-07 19:52:49 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-06-07 19:52:49 +0200
commitddc612a2ba3864c86a0e9c0b30811727096c1772 (patch)
tree6a89442fb0fe401111161305d9751399ffd21427 /gcc/f/lab.c
parent44de936effb3be77a5a7b25873ed2f8a9229ab9c (diff)
downloadgcc-ddc612a2ba3864c86a0e9c0b30811727096c1772.zip
gcc-ddc612a2ba3864c86a0e9c0b30811727096c1772.tar.gz
gcc-ddc612a2ba3864c86a0e9c0b30811727096c1772.tar.bz2
symbol.c (ffesymbol_new_): Remove tests for macro FFECOM_symbolHOOK.
* symbol.c (ffesymbol_new_): Remove tests for macro FFECOM_symbolHOOK. * symbol.h: Likewise. * storag.c (ffestorag_new): Remove tests for macro FFECOM_storageHOOK. * storag.h: Likewise. * lab.c (ffelab_new): Remove tests for macro FFECOM_labelHOOK. * lab.h: Likewise. * global.c: Remove tests for macro FFECOM_globalHOOK. * global.h (struct _ffeglobal_): Likewise. * bld.h: Remove tests for macros FFECOM_constantHOOK, FFECOM_nonterHOOK, FFECOM_globalHOOK, FFECOM_labelHOOK, FFECOM_storageHOOK, FFECOM_symbolHOOK. Remove code dependend on FFECOM_itemHOOK. * bld.c: Likewise. * com.h (FFECOM_constantHOOK): Remove define. (FFECOM_nonterHOOK): Remove. (FFECOM_globalHOOK): Remove. (FFECOM_labelHOOK): Remove. (FFECOM_storageHOOK): Remove. (FFECOM_symbolHOOK): Remove. * com.c (ffecom_get_external_identifier_): Remove usage of FFETARGET_isENFORCED_MAIN_NAME. * bld.c: Remove code dependend on FFEBLD_BLANK_, FFECOM_itemHOOK. (ffebld_new_accter): Likewise. (ffebld_new_arrter): Likewise. (ffebld_new_conter_with_orig): Likewise. (ffebld_new_item): Likewise. (ffebld_new_labter): Likewise. (ffebld_new_labtok): Likewise. (ffebld_new_none): Likewise. (ffebld_new_one): Likewise. (ffebld_new_symter): Likewise. (ffebld_new_two): Likewise. From-SVN: r67594
Diffstat (limited to 'gcc/f/lab.c')
-rw-r--r--gcc/f/lab.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/f/lab.c b/gcc/f/lab.c
index a870a7f..dcfb883 100644
--- a/gcc/f/lab.c
+++ b/gcc/f/lab.c
@@ -1,5 +1,5 @@
/* lab.c -- Implementation File (module.c template V1.0)
- Copyright (C) 1995 Free Software Foundation, Inc.
+ Copyright (C) 1995, 2003 Free Software Foundation, Inc.
Contributed by James Craig Burley.
This file is part of GNU Fortran.
@@ -143,9 +143,7 @@ ffelab_new (ffelabValue v)
++ffelab_num_news_;
l = (ffelab) malloc_new_ks (ffe_pool_any_unit (), "FFELAB label", sizeof (*l));
l->next = ffelab_list_;
-#ifdef FFECOM_labelHOOK
l->hook = FFECOM_labelNULL;
-#endif
l->value = v;
l->firstref_line = ffewhere_line_unknown ();
l->firstref_col = ffewhere_column_unknown ();