aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/c-decl.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9d60871..1dee671 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-06-01 Richard Henderson <rth@cygnus.com>
+
+ * c-decl.c (init_decl_processing): Set lang_get_alias_set first thing.
+
2000-05-31 Richard Henderson <rth@cygnus.com>
* config/ia64/ia64.c (sdata_symbolic_operand): Consider small
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 74ac13a..08bc979 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -2896,6 +2896,8 @@ init_decl_processing ()
tree array_domain_type;
tree t;
+ lang_get_alias_set = c_get_alias_set;
+
current_function_decl = NULL;
named_labels = NULL;
current_binding_level = NULL_BINDING_LEVEL;
@@ -3137,8 +3139,6 @@ init_decl_processing ()
incomplete_decl_finalize_hook = finish_incomplete_decl;
- lang_get_alias_set = c_get_alias_set;
-
/* Record our roots. */
ggc_add_tree_root (c_global_trees, CTI_MAX);