From: Mark Mitchell Date: Mon, 1 Nov 1999 06:42:00 +0000 (+0000) Subject: toplev.c (rest_of_compilation): Fix thinko in this change: X-Git-Tag: prereleases/libstdc++-2.92~9765 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e038608acd6e57ae2a13088b5e1f25d2b23d926;p=thirdparty%2Fgcc.git toplev.c (rest_of_compilation): Fix thinko in this change: * toplev.c (rest_of_compilation): Fix thinko in this change: Fri Oct 29 15:25:07 1999 Arnaud Charlet (rest_of_compilation): If inside an inlined external function, pretend we are just being declared. From-SVN: r30313 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3e20f1643e7f..111c5e9ab91f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +Sun Oct 31 23:42:37 1999 Mark Mitchell + + * toplev.c (rest_of_compilation): Fix thinko in this change: + + Fri Oct 29 15:25:07 1999 Arnaud Charlet + + (rest_of_compilation): If inside an inlined external function, + pretend we are just being declared. + Sun Oct 31 23:03:25 1999 Jeffrey A Law (law@cygnus.com) * integrate.c (expand_inline_function): Fix bugs in previous diff --git a/gcc/toplev.c b/gcc/toplev.c index ea4631a5cd1d..64fc23e1df45 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3586,7 +3586,8 @@ rest_of_compilation (decl) confuse some debugging output writers. */ for (parent = DECL_CONTEXT (current_function_decl); parent != 0; parent = DECL_CONTEXT (parent)) - if (DECL_INLINE (parent) && DECL_EXTERNAL (parent)) + if (TREE_CODE (parent) == FUNCTION_DECL + && DECL_INLINE (parent) && DECL_EXTERNAL (parent)) { DECL_INITIAL (decl) = 0; goto exit_rest_of_compilation;