2007-02-08 Thiago Jung Bauermann <bauerman@br.ibm.com>

* rs6000-tdep.c (gdb_print_insn_powerpc): Set
	info->disassembler_options to "any".
This commit is contained in:
Daniel Jacobowitz 2007-02-08 18:05:23 +00:00
parent 7af9851d0d
commit ee4f0f763c
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-02-08 Thiago Jung Bauermann <bauerman@br.ibm.com>
* rs6000-tdep.c (gdb_print_insn_powerpc): Set
info->disassembler_options to "any".
2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
* varobj.c (install_new_value): Only call value_get_print_value

View File

@ -2924,6 +2924,9 @@ find_variant_by_arch (enum bfd_architecture arch, unsigned long mach)
static int
gdb_print_insn_powerpc (bfd_vma memaddr, disassemble_info *info)
{
if (!info->disassembler_options)
info->disassembler_options = "any";
if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
return print_insn_big_powerpc (memaddr, info);
else