diff options
author | Alan Modra <amodra@gmail.com> | 2004-11-10 03:28:45 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-11-10 03:28:45 +0000 |
commit | c04f57872c0988821cad10fd87bde4deea05d4a5 (patch) | |
tree | 77fe027a94ba6ee3e844f8034b196afa4c67303d /gas/config/obj-ecoff.h | |
parent | 390e974f5201cd4c8e4c35562e806d65c672dd4e (diff) | |
download | gdb-c04f57872c0988821cad10fd87bde4deea05d4a5.zip gdb-c04f57872c0988821cad10fd87bde4deea05d4a5.tar.gz gdb-c04f57872c0988821cad10fd87bde4deea05d4a5.tar.bz2 |
* obj.h (struct format_ops <app_file>): Add int param.
* read.h (s_app_file_string): Likewise.
* read.c (s_app_file_string): Likewise.
(s_app_file): Adjust s_app_file_string call.
* config/tc-mips.c (s_mips_file): Likewise.
* config/obj-coff.h (obj_app_file): Add app param.
* config/obj-ecoff.h (obj_app_file): Likewise.
* config/obj-multi.h (obj_app_file): Likewise.
* config/obj-elf.h (elf_file_symbol): Likewise.
* config/obj-elf.c (elf_file_symbol): Only emit one file symbol
if called for # preprocessor lines.
Diffstat (limited to 'gas/config/obj-ecoff.h')
-rw-r--r-- | gas/config/obj-ecoff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/obj-ecoff.h b/gas/config/obj-ecoff.h index 54ee043..9dbb4e5 100644 --- a/gas/config/obj-ecoff.h +++ b/gas/config/obj-ecoff.h @@ -63,7 +63,7 @@ extern void ecoff_frob_file PARAMS ((void)); #define obj_symbol_new_hook ecoff_symbol_new_hook /* Record file switches in the ECOFF symbol table. */ -#define obj_app_file(name) ecoff_new_file (name) +#define obj_app_file(name, app) ecoff_new_file (name) /* At the moment we don't want to do any stabs processing in read.c. */ #define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \ |