diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/reload1.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 97a5360..5a18b75 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Dec 8 13:11:04 1998 Jeffrey A Law (law@cygnus.com) + + * reload1.c (current_function_decl): Tweak declaration. + Tue Dec 8 10:23:52 1998 Richard Henderson <rth@cygnus.com> * c-decl.c (flag_isoc9x): Default off. diff --git a/gcc/reload1.c b/gcc/reload1.c index 9491206..4a90c25 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -285,7 +285,7 @@ struct insn_chain *reload_insn_chain; #ifdef TREE_CODE extern tree current_function_decl; #else -extern void *current_function_decl; +extern union tree_node *current_function_decl; #endif /* List of all insns needing reloads. */ |