diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5182b34..1ee5d8e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-06-02 Jan Hubicka <jh@suse.cz> + + * cgraphunit.c (cgraph_function_and_variable_visibility): Fix typo in + previous patch. + 2005-06-02 Diego Novillo <dnovillo@redhat.com> PR 21582 diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index b10679d..7f8a96d 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) { |