diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-11 23:15:52 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-11 23:15:52 +0000 |
commit | 903676f62fc20f2bf6b7732ad0466f0749b49300 (patch) | |
tree | dbb73853ee578ae05b72466fe14f6ebfa95f85d9 /gcc/varasm.c | |
parent | 4dd9b0448f55767c388675e9a91784b4b5105702 (diff) | |
download | gcc-903676f62fc20f2bf6b7732ad0466f0749b49300.zip gcc-903676f62fc20f2bf6b7732ad0466f0749b49300.tar.gz gcc-903676f62fc20f2bf6b7732ad0466f0749b49300.tar.bz2 |
varasm.c (get_named_section_flags, [...]): Make them static.
* varasm.c (get_named_section_flags, decl_tls_model): Make
them static.
* output.h: Remove the prototype for get_named_section_flags.
* tree.h: Remove the prototype for decl_tls_model.
From-SVN: r90506
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index bff916b..a92abb4 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -350,7 +350,7 @@ in_named_entry_hash (const void *p) set of flags for a section to have, so 0 does not mean that the section has not been seen. */ -unsigned int +static unsigned int get_named_section_flags (const char *section) { struct in_named_entry **slot; @@ -4476,7 +4476,7 @@ init_varasm_once (void) const_alias_set = new_alias_set (); } -enum tls_model +static enum tls_model decl_tls_model (tree decl) { enum tls_model kind; |