diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-12-21 18:40:48 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-12-21 18:40:48 +0000 |
commit | f6bf809f6cc1484155962bfc9020c42ecb839e58 (patch) | |
tree | 9a71a581e52b92d35a218a9bb681ca1e78485d05 /gcc | |
parent | eb77256b6395628d3d0841dd71448daf100ff103 (diff) | |
download | gcc-f6bf809f6cc1484155962bfc9020c42ecb839e58.zip gcc-f6bf809f6cc1484155962bfc9020c42ecb839e58.tar.gz gcc-f6bf809f6cc1484155962bfc9020c42ecb839e58.tar.bz2 |
ip2k-protos.h: Remove the prototype for asm_output_section_name.
* config/ip2k/ip2k-protos.h: Remove the prototype for
asm_output_section_name.
* config/ip2k/ip2k.c (asm_output_section_name): Remove.
From-SVN: r74911
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/ip2k/ip2k-protos.h | 1 | ||||
-rw-r--r-- | gcc/config/ip2k/ip2k.c | 10 |
3 files changed, 6 insertions, 11 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 848d486..60ec861 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2003-12-21 Kazu Hirata <kazu@cs.umass.edu> + * config/ip2k/ip2k-protos.h: Remove the prototype for + asm_output_section_name. + * config/ip2k/ip2k.c (asm_output_section_name): Remove. + +2003-12-21 Kazu Hirata <kazu@cs.umass.edu> + * alias.c: Fix comment formatting. * alloc-pool.c: Likewise. * bitmap.c: Likewise. diff --git a/gcc/config/ip2k/ip2k-protos.h b/gcc/config/ip2k/ip2k-protos.h index e831f2f..1c4355f 100644 --- a/gcc/config/ip2k/ip2k-protos.h +++ b/gcc/config/ip2k/ip2k-protos.h @@ -25,7 +25,6 @@ extern int find_one_clear_bit_p (HOST_WIDE_INT); #ifdef TREE_CODE extern void unique_section (tree, int); -extern void asm_output_section_name (FILE *, tree, const char *, int); extern int valid_machine_type_attribute (tree, tree, tree, tree); extern int valid_machine_decl_attribute (tree, tree, tree, tree); extern int ip2k_return_pops_args (tree, tree, int); diff --git a/gcc/config/ip2k/ip2k.c b/gcc/config/ip2k/ip2k.c index b8a9eed..cb73b39 100644 --- a/gcc/config/ip2k/ip2k.c +++ b/gcc/config/ip2k/ip2k.c @@ -3082,16 +3082,6 @@ unique_section (tree decl, int reloc ATTRIBUTE_UNUSED) } } - -/* Output section name to file FILE. */ - -void -asm_output_section_name (FILE *file, tree decl ATTRIBUTE_UNUSED, - const char *name, int reloc ATTRIBUTE_UNUSED) -{ - fprintf (file, ".section %s\n", name); -} - /* Return value is nonzero if pseudos that have been assigned to registers of class CLASS would likely be spilled because registers of CLASS are needed for spill registers. */ |