From: Hans-Peter Nilsson Date: Tue, 14 Nov 2000 20:08:55 +0000 (+0000) Subject: * cris-dis.c (cris_get_disassembler): If abfd is NULL, return X-Git-Tag: newlib-1_9_0~571 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6b0b32c895842eff432aae033ed437db8af403f;p=external%2Fbinutils.git * cris-dis.c (cris_get_disassembler): If abfd is NULL, return print_insn_cris_with_register_prefix. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 7934aa8..292aa8f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2000-11-14 Hans-Peter Nilsson + + * cris-dis.c (cris_get_disassembler): If abfd is NULL, return + print_insn_cris_with_register_prefix. + 2000-11-11 Alexandre Oliva * sh-opc.h: The operand of `mov.w r0, (,GBR)' is IMM1, not 0. diff --git a/opcodes/cris-dis.c b/opcodes/cris-dis.c index 169b4c2..44a4b56 100644 --- a/opcodes/cris-dis.c +++ b/opcodes/cris-dis.c @@ -1387,7 +1387,10 @@ disassembler_ftype cris_get_disassembler (abfd) bfd *abfd; { - if (bfd_get_symbol_leading_char (abfd) == 0) + /* If there's no bfd in sight, we return what is valid as input in all + contexts if fed back to the assembler: disassembly *with* register + prefix. */ + if (abfd == NULL || bfd_get_symbol_leading_char (abfd) == 0) return print_insn_cris_with_register_prefix; return print_insn_cris_without_register_prefix;