aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-06-01 02:44:37 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-06-01 02:44:37 -0700
commitbc11d9b8031ac856381237c9385683fc1f1d8ec2 (patch)
tree2955b7fa17ed49fa6ba332a569d0aac2116f9972 /gcc
parentf3798d124f5e1b427252d59a9858c524f0736a8b (diff)
downloadgcc-bc11d9b8031ac856381237c9385683fc1f1d8ec2.zip
gcc-bc11d9b8031ac856381237c9385683fc1f1d8ec2.tar.gz
gcc-bc11d9b8031ac856381237c9385683fc1f1d8ec2.tar.bz2
* c-decl.c (init_decl_processing): Set lang_get_alias_set first thing.
From-SVN: r34335
Diffstat (limited to 'gcc')
-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);