diff options
author | Richard Henderson <rth@cygnus.com> | 2000-06-01 02:44:58 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-06-01 02:44:58 -0700 |
commit | 4ac4357be5711e7cb1b9dce455cdfffe7c9d883a (patch) | |
tree | c0d17b4557e9e63a6aa2c6efab7b21d2f0a94722 /gcc | |
parent | bc11d9b8031ac856381237c9385683fc1f1d8ec2 (diff) | |
download | gcc-4ac4357be5711e7cb1b9dce455cdfffe7c9d883a.zip gcc-4ac4357be5711e7cb1b9dce455cdfffe7c9d883a.tar.gz gcc-4ac4357be5711e7cb1b9dce455cdfffe7c9d883a.tar.bz2 |
* decl.c (init_decl_processing): Set lang_get_alias_set first thing.
From-SVN: r34336
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/decl.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d22c4ce..ccd3f55 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,9 @@ 2000-06-01 Richard Henderson <rth@cygnus.com> + * decl.c (init_decl_processing): Set lang_get_alias_set first thing. + +2000-06-01 Richard Henderson <rth@cygnus.com> + * decl2.c (unsupported_options): Fix typo, make const. (lang_decode_option): Fix bsearch argument order. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 85de6ae..55c7ba5 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -6251,6 +6251,8 @@ init_decl_processing () int wchar_type_size; tree array_domain_type; + lang_get_alias_set = c_get_alias_set; + /* Check to see that the user did not specify an invalid combination of command-line options. */ if (flag_new_abi && !flag_vtable_thunks) @@ -6640,7 +6642,6 @@ init_decl_processing () using_eh_for_cleanups (); print_error_function = lang_print_error_function; - lang_get_alias_set = &c_get_alias_set; valid_lang_attribute = cp_valid_lang_attribute; /* Maintain consistency. Perhaps we should just complain if they |