diff options
author | Alan Modra <amodra@gmail.com> | 2007-07-03 03:29:40 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-07-03 03:29:40 +0000 |
commit | ae4a729bff61b571c63a35ffa265d321cf8f9c89 (patch) | |
tree | 6e4bc6b58dd94775fbfcfae98bd6a6984a66be02 /gas | |
parent | df816087248d86b7397528dfceb82ed3952bd3c2 (diff) | |
download | gdb-ae4a729bff61b571c63a35ffa265d321cf8f9c89.zip gdb-ae4a729bff61b571c63a35ffa265d321cf8f9c89.tar.gz gdb-ae4a729bff61b571c63a35ffa265d321cf8f9c89.tar.bz2 |
PR 4713
* config/obj-elf.c (elf_ecoff_set_ext): Make static when OBJ_MAYBE_ELF.
* config/obj-elf.h (obj_ecoff_set_ext): Comment.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/obj-elf.c | 6 | ||||
-rw-r--r-- | gas/config/obj-elf.h | 3 |
3 files changed, 13 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 170934e..a9b0868 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2007-07-03 Alan Modra <amodra@bigpond.net.au> + + PR 4713 + * config/obj-elf.c (elf_ecoff_set_ext): Make static when OBJ_MAYBE_ELF. + * config/obj-elf.h (obj_ecoff_set_ext): Comment. + 2007-07-03 Mikkel Lauritsen <renard@nospam.dk> PR 4722 diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index b826803..2f93990 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -1,6 +1,7 @@ /* ELF object file format Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + 2001, 2002, 2003, 2004, 2005, 2006, 2007 + Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -1693,6 +1694,9 @@ adjust_stab_sections (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED) this at the moment, so we do it ourselves. We save the information in the symbol. */ +#ifdef OBJ_MAYBE_ELF +static +#endif void elf_ecoff_set_ext (symbolS *sym, struct ecoff_extr *ext) { diff --git a/gas/config/obj-elf.h b/gas/config/obj-elf.h index 6fc08d4..29356ab 100644 --- a/gas/config/obj-elf.h +++ b/gas/config/obj-elf.h @@ -1,6 +1,6 @@ /* ELF object file format. Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, - 2002, 2003, 2004, 2006 Free Software Foundation, Inc. + 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -236,6 +236,7 @@ extern void elf_pop_insert (void); #endif #ifndef OBJ_MAYBE_ELF +/* If OBJ_MAYBE_ELF then obj-multi.h will define obj_ecoff_set_ext. */ #define obj_ecoff_set_ext elf_ecoff_set_ext struct ecoff_extr; extern void elf_ecoff_set_ext (symbolS *, struct ecoff_extr *); |