diff options
author | Nick Clifton <nickc@redhat.com> | 2001-03-24 00:46:00 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-03-24 00:46:00 +0000 |
commit | 031d153ff1ec8b82fadf0e4bd0ed17d116eea465 (patch) | |
tree | 37f49ac00d96c436987b5f3842b26bff17d24283 /opcodes/mips-dis.c | |
parent | b74495a2c6af4968e347af964cd286b2a66e4376 (diff) | |
download | binutils-redhat-031d153ff1ec8b82fadf0e4bd0ed17d116eea465.tar.gz |
Remove extraneous whitespace
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index c016a87723..4af8822df0 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -165,7 +165,7 @@ print_insn_arg (d, l, pc, info) if (reg == ((l >> OP_SH_RT) & OP_MASK_RT)) (*info->fprintf_func) (info->stream, "$%s", reg_names[reg]); - else + else { /* If one is zero use the other. */ if (reg == 0) @@ -264,7 +264,7 @@ print_insn_arg (d, l, pc, info) break; case 'H': - (*info->fprintf_func) (info->stream, "%d", + (*info->fprintf_func) (info->stream, "%d", (l >> OP_SH_SEL) & OP_MASK_SEL); break; @@ -431,9 +431,9 @@ _print_insn_mips (memaddr, word, info) FIXME: Where does mips_target_info come from? */ target_processor = mips_target_info.processor; mips_isa = mips_target_info.isa; -#else +#else set_mips_isa_type (info->mach, &mips_isa, &target_processor); -#endif +#endif info->bytes_per_chunk = 4; info->display_endian = info->endian; @@ -490,7 +490,7 @@ print_insn_big_mips (memaddr, info) /* Only a few tools will work this way. */ if (memaddr & 0x01) return print_insn_mips16 (memaddr, info); -#endif +#endif #if SYMTAB_AVAILABLE if (info->mach == 16 @@ -499,7 +499,7 @@ print_insn_big_mips (memaddr, info) && ((*(elf_symbol_type **) info->symbols)->internal_elf_sym.st_other == STO_MIPS16))) return print_insn_mips16 (memaddr, info); -#endif +#endif status = (*info->read_memory_func) (memaddr, buffer, 4, info); if (status == 0) @@ -524,7 +524,7 @@ print_insn_little_mips (memaddr, info) #if 1 if (memaddr & 0x01) return print_insn_mips16 (memaddr, info); -#endif +#endif #if SYMTAB_AVAILABLE if (info->mach == 16 @@ -533,7 +533,7 @@ print_insn_little_mips (memaddr, info) && ((*(elf_symbol_type **) info->symbols)->internal_elf_sym.st_other == STO_MIPS16))) return print_insn_mips16 (memaddr, info); -#endif +#endif status = (*info->read_memory_func) (memaddr, buffer, 4, info); if (status == 0) |