diff options
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d7a7a3b..c0ca59d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2001-01-07 Neil Booth <neil@daikokuya.demon.co.uk> + + * cp/decl2.c (cxx_post_options): Call cpp_post_options. + 2001-01-05 Nathan Sidwell <nathan@codesourcery.com> * parse.y (template_datadef): Check for error_mark_node. diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 4daf590..bac8a6d 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -551,6 +551,7 @@ struct lang_hooks lang_hooks = {cxx_post_options}; static void cxx_post_options () { + cpp_post_options (parse_in); } /* Compare two option strings, pointed two by P1 and P2, for use with |