diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-11 18:28:26 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-11 18:28:26 +0000 |
| commit | 61090c86147c35cbdc8dde910b274a4621e3e2ac (patch) | |
| tree | 93945825bb84bcf05fabc5de714eef864da800e0 | |
| parent | 8d97f43802d7fff1f10d8f9c56b595254c929050 (diff) | |
| download | ppe42-gcc-61090c86147c35cbdc8dde910b274a4621e3e2ac.tar.gz ppe42-gcc-61090c86147c35cbdc8dde910b274a4621e3e2ac.zip | |
* tree.h (MODULE_LOCAL_P): Kill.
* varasm.c (default_binds_local_p_1): Use decl_visibility instead.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60040 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/tree.h | 5 | ||||
| -rw-r--r-- | gcc/varasm.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index caf1f4bce78..9a8c41acd65 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-12-11 Richard Henderson <rth@redhat.com> + + * tree.h (MODULE_LOCAL_P): Kill. + * varasm.c (default_binds_local_p_1): Use decl_visibility instead. + 2002-12-11 Kazu Hirata <kazu@cs.umass.edu> * config/h8300/h8300.md (two define_peephole2): New. diff --git a/gcc/tree.h b/gcc/tree.h index a675851003b..1dda21c81d7 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2402,11 +2402,6 @@ extern tree merge_attributes PARAMS ((tree, tree)); extern tree merge_dllimport_decl_attributes PARAMS ((tree, tree)); #endif -/* Return true if DECL will be always resolved to a symbol defined in the - same module (shared library or program). */ -#define MODULE_LOCAL_P(DECL) \ - (lookup_attribute ("visibility", DECL_ATTRIBUTES (DECL)) != NULL) - /* Return a version of the TYPE, qualified as indicated by the TYPE_QUALS, if one exists. If no qualified version exists yet, return NULL_TREE. */ diff --git a/gcc/varasm.c b/gcc/varasm.c index f8b33d080a6..8b321af8296 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -5417,7 +5417,7 @@ default_binds_local_p_1 (exp, shlib) else if (! TREE_PUBLIC (exp)) local_p = true; /* A variable is local if the user tells us so. */ - else if (MODULE_LOCAL_P (exp)) + else if (decl_visibility (exp) != VISIBILITY_DEFAULT) local_p = true; /* Otherwise, variables defined outside this object may not be local. */ else if (DECL_EXTERNAL (exp)) |

