diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-11-09 08:29:34 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-11-09 08:29:34 +0000 |
commit | 5bb3703f01dd574faebbd3a69f4c64dbfee6a701 (patch) | |
tree | d717373f238005fb01abdc275b9ec39bc8ed49d7 /opcodes | |
parent | 558a9d8255131b61150160b6226af5c2550cb52c (diff) | |
download | ppe42-binutils-5bb3703f01dd574faebbd3a69f4c64dbfee6a701.tar.gz ppe42-binutils-5bb3703f01dd574faebbd3a69f4c64dbfee6a701.zip |
Remove trailing redundant `;'
bfd/
* aout-tic30.c (MY_final_link_callback): Remove trailing
redundant `;'.
* coff-h8500.c (extra_case): Likewise.
(bfd_coff_reloc16_get_value): Likewise.
* dwarf2.c (_bfd_dwarf2_cleanup_debug_info): Likewise.
* elf.c (_bfd_elf_slurp_version_tables): Likewise.
* elf32-frv.c (elf32_frv_relocate_section): Likewise.
* elf32-v850.c (v850_elf_perform_relocation): Likewise.
* opncls.c (bfd_calc_gnu_debuglink_crc32): Likewise.
* plugin.c (add_symbols): Likewise.
* reloc.c (bfd_check_overflow): Likewise.
* vms-lib.c (_bfd_vms_lib_archive_p): Likewise.
binutils/
* coffgrok.c (coff_grok): Remove trailing redundant `;'.
* resrc.c (open_input_stream): Likewise.
gas/
* config/atof-ieee.c (gen_to_words): Remove trailing redundant
`;'.
* config/atof-vax.c (flonum_gen2vax): Likewise.
* config/tc-d10v.c (write_2_short): Likewise.
* config/tc-i386-intel.c (i386_intel_simplify): Likewise.
* config/tc-s390.c (tc_s390_force_relocation): Likewise.
* config/tc-v850.c (md_parse_option): Likewise.
* config/tc-xtensa.c (find_address_of_next_align_frag): Likewise.
* dwarf2dbg.c (out_header): Likewise.
* symbols.c (dollar_label_name): Likewise.
(fb_label_name): Likewise.
ld/
* testplug.c (record_add_file): Remove trailing redundant `;'.
opcodes/
* aarch64-opc.h (gen_mask): Remove trailing redundant `;'.
* ia64-gen.c (fetch_insn_class): Likewise.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/aarch64-opc.h | 2 | ||||
-rw-r--r-- | opcodes/ia64-gen.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index e85662882e..9400f5c5f1 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2012-11-09 H.J. Lu <hongjiu.lu@intel.com> + + * aarch64-opc.h (gen_mask): Remove trailing redundant `;'. + * ia64-gen.c (fetch_insn_class): Likewise. + 2012-11-08 Alan Modra <amodra@gmail.com> * po/POTFILES.in: Regenerate. diff --git a/opcodes/aarch64-opc.h b/opcodes/aarch64-opc.h index d475fa497d..b46f7dafc7 100644 --- a/opcodes/aarch64-opc.h +++ b/opcodes/aarch64-opc.h @@ -212,7 +212,7 @@ reset_operand_qualifier (aarch64_inst *inst, int idx) static inline aarch64_insn gen_mask (int width) { - return ((aarch64_insn) 1 << width) - 1;; + return ((aarch64_insn) 1 << width) - 1; } /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */ diff --git a/opcodes/ia64-gen.c b/opcodes/ia64-gen.c index 042c0fd4c6..bcb4e25ad2 100644 --- a/opcodes/ia64-gen.c +++ b/opcodes/ia64-gen.c @@ -570,7 +570,7 @@ fetch_insn_class (const char *full_name, int create) ics[ind]->nsubs = 1; ics[ind]->subs = tmalloc(int); - ics[ind]->subs[0] = fetch_insn_class (subname, 1);; + ics[ind]->subs[0] = fetch_insn_class (subname, 1); } while (xsect) |