From: Jan Hubicka Date: Thu, 2 Jun 2005 18:35:59 +0000 (+0200) Subject: cgraphunit.c (cgraph_function_and_variable_visibility): Fix typo in previous patch. X-Git-Tag: misc/cutover-cvs2svn~2693 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04b0eed045fd952d1e8889dd06f07563ce16160b;p=thirdparty%2Fgcc.git cgraphunit.c (cgraph_function_and_variable_visibility): Fix typo in previous patch. * cgraphunit.c (cgraph_function_and_variable_visibility): Fix typo in previous patch. From-SVN: r100506 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5182b3443d1d..1ee5d8ea9fc0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-06-02 Jan Hubicka + + * cgraphunit.c (cgraph_function_and_variable_visibility): Fix typo in + previous patch. + 2005-06-02 Diego Novillo PR 21582 diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index b10679d59ee3..7f8a96d36f6e 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1046,7 +1046,7 @@ cgraph_function_and_variable_visibility (void) node->local.externally_visible = 1; node->local.local = (!node->needed && node->analyzed - && node->local.externally_visible); + && !node->local.externally_visible); } for (vnode = cgraph_varpool_nodes_queue; vnode; vnode = vnode->next_needed) {