diff options
author | Alan Modra <amodra@gmail.com> | 2002-12-12 22:18:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-12-12 22:18:10 +0000 |
commit | 78a0c6fb2d664b42e6373f6a7ba3e63b55f7c938 (patch) | |
tree | 63ed73ba637231922b55ffc6414c6cc9954fac76 /gas/config/tc-m32r.h | |
parent | f1f5ef86e383abaa1cc92768d47521cd87e277a5 (diff) | |
download | gdb-78a0c6fb2d664b42e6373f6a7ba3e63b55f7c938.zip gdb-78a0c6fb2d664b42e6373f6a7ba3e63b55f7c938.tar.gz gdb-78a0c6fb2d664b42e6373f6a7ba3e63b55f7c938.tar.bz2 |
* config/tc-m32r.c (md_parse_option <arg>): Add ATTRIBUTE_UNUSED.
(fill_insn <ignore>): Likewise.
(debug_sym <ignore>): Likewise.
(md_undefined_symbol <name>): Likewise.
(m32r_scomm <ignore>): Likewise.
(md_convert_frag <abfd>): Likewise.
(md_cgen_lookup_reloc <insn>): Likewise.
(m32r_record_hi16 <seg>): Likewise.
(md_estimate_size_before_relax): #if 0 old_fr_fix.
(allow_m32rx): Prototype.
(first_writes_to_seconds_operands): Prototype.
(writes_to_pc): Prototype.
(can_make_parallel): Prototype.
(make_parallel): Prototype.
(target_make_parallel): Prototype.
(assemble_two_insns): Prototype.
(m32r_record_hi16): Prototype.
(md_atof): Remove declaration of atof_ieee.
* config/tc-m32r.h (m32r_fix_adjustable): Declare.
(m32r_force_relocation): Prototype.
(m32r_elf_section_change_hook): Prototype.
Diffstat (limited to 'gas/config/tc-m32r.h')
-rw-r--r-- | gas/config/tc-m32r.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/config/tc-m32r.h b/gas/config/tc-m32r.h index d046b3e..12512f7 100644 --- a/gas/config/tc-m32r.h +++ b/gas/config/tc-m32r.h @@ -74,6 +74,7 @@ extern void m32r_handle_align PARAMS ((fragS *)); #define md_apply_fix3 gas_cgen_md_apply_fix3 #define tc_fix_adjustable(FIX) m32r_fix_adjustable (FIX) +bfd_boolean m32r_fix_adjustable PARAMS ((struct fix *)); /* After creating a fixup for an instruction operand, we need to check for HI16 relocs and queue them up for later sorting. */ @@ -90,7 +91,7 @@ extern void m32r_frob_file PARAMS ((void)); /* When relaxing, we need to emit various relocs we otherwise wouldn't. */ #define TC_FORCE_RELOCATION(fix) m32r_force_relocation (fix) -extern int m32r_force_relocation (); +extern int m32r_force_relocation PARAMS ((struct fix *)); /* Ensure insns at labels are aligned to 32 bit boundaries. */ int m32r_fill_insn PARAMS ((int)); @@ -104,4 +105,4 @@ int m32r_fill_insn PARAMS ((int)); #define md_cleanup m32r_elf_section_change_hook #define md_elf_section_change_hook m32r_elf_section_change_hook -extern void m32r_elf_section_change_hook (); +extern void m32r_elf_section_change_hook PARAMS ((void)); |