summaryrefslogtreecommitdiff
path: root/opcodes/bfin-dis.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-02-22 20:51:42 +0000
committerMike Frysinger <vapier@gentoo.org>2011-02-22 20:51:42 +0000
commit6eea50e56d1513d7bd3ce4b6fcef7b04655865d9 (patch)
tree1817b14b4f06e5665231967ca7aa30b7e3edf93a /opcodes/bfin-dis.c
parent365d63b832aa8b2453ae06f0d683abb1cb41afa9 (diff)
downloadgdb-6eea50e56d1513d7bd3ce4b6fcef7b04655865d9.tar.gz
opcodes: blackfin: use OUTS helper
We have an OUTS helper to handle outf fprintf_func logic, so conver the few places not using it over. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'opcodes/bfin-dis.c')
-rw-r--r--opcodes/bfin-dis.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/bfin-dis.c b/opcodes/bfin-dis.c
index a475c23911b..9b834a41301 100644
--- a/opcodes/bfin-dis.c
+++ b/opcodes/bfin-dis.c
@@ -4781,9 +4781,9 @@ print_insn_bfin (bfd_vma pc, disassemble_info *outf)
int len;
parallel = 1;
- outf->fprintf_func (outf->stream, " || ");
+ OUTS (outf, " || ");
len = _print_insn_bfin (pc + 4, outf);
- outf->fprintf_func (outf->stream, " || ");
+ OUTS (outf, " || ");
if (len != 2)
legal = 0;
len = _print_insn_bfin (pc + 6, outf);
@@ -4794,7 +4794,7 @@ print_insn_bfin (bfd_vma pc, disassemble_info *outf)
count = 8;
else
{
- outf->fprintf_func (outf->stream, ";\t\t/* ILLEGAL PARALLEL INSTRUCTION */");
+ OUTS (outf, ";\t\t/* ILLEGAL PARALLEL INSTRUCTION */");
comment = 1;
count = 0;
}
@@ -4802,7 +4802,7 @@ print_insn_bfin (bfd_vma pc, disassemble_info *outf)
}
if (!comment)
- outf->fprintf_func (outf->stream, ";");
+ OUTS (outf, ";");
if (count == 0)
return 2;