diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/tree-mudflap.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0de0972..023b85d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-06-14 Frank Ch. Eigler <fche@redhat.com> + + PR mudflap/21023 + * tree-mudflap.c (mudflap_finish_file): Exclude non-public + rather than static objects (!) from libmudflap registration. + 2005-06-14 Richard Sandiford <richard@codesourcery.com> * opt-functions.awk (global_state_p, needs_state_p, static_var): New. diff --git a/gcc/tree-mudflap.c b/gcc/tree-mudflap.c index 401e6b15..1ed0159 100644 --- a/gcc/tree-mudflap.c +++ b/gcc/tree-mudflap.c @@ -1257,7 +1257,7 @@ mudflap_finish_file (void) Perform registration for non-static objects regardless of TREE_USED or TREE_ADDRESSABLE, because they may be used from other compilation units. */ - if (TREE_STATIC (obj) && ! TREE_ADDRESSABLE (obj)) + if (! TREE_PUBLIC (obj) && ! TREE_ADDRESSABLE (obj)) continue; if (! COMPLETE_TYPE_P (TREE_TYPE (obj))) |