diff options
author | Stan Cox <scox@redhat.com> | 2002-08-17 15:09:29 +0000 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2002-08-17 15:09:29 +0000 |
commit | cca86cc8d6e749bf054aaf3354322f6429be13d3 (patch) | |
tree | c5c65ad5c75d2c45a32275937077e98df2ae7b10 /gas/config/obj-elf.c | |
parent | b4671f856bd5aa0846faf528493fae41a8127d01 (diff) | |
download | gdb-cca86cc8d6e749bf054aaf3354322f6429be13d3.zip gdb-cca86cc8d6e749bf054aaf3354322f6429be13d3.tar.gz gdb-cca86cc8d6e749bf054aaf3354322f6429be13d3.tar.bz2 |
* config/obj-elf.c (obj_elf_change_section): Make non-static.
config/tc-mips.c (s_change_section): New function to support
IRIX .section pseudo-op.
Diffstat (limited to 'gas/config/obj-elf.c')
-rw-r--r-- | gas/config/obj-elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 2266952..375dcff 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -77,7 +77,7 @@ static void obj_elf_ident PARAMS ((int)); static void obj_elf_weak PARAMS ((int)); static void obj_elf_local PARAMS ((int)); static void obj_elf_visibility PARAMS ((int)); -static void obj_elf_change_section +void obj_elf_change_section PARAMS ((const char *, int, int, int, const char *, int, int)); static int obj_elf_parse_section_letters PARAMS ((char *, size_t)); static int obj_elf_section_word PARAMS ((char *, size_t)); @@ -664,7 +664,7 @@ static struct special_section const special_sections[] = { NULL, 0, 0 } }; -static void +void obj_elf_change_section (name, type, attr, entsize, group_name, linkonce, push) const char *name; int type; |