From: sveinse Date: Tue, 14 Dec 2004 22:30:28 +0000 (+0000) Subject: Added printing of symbols on AVR disasm X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8508f0d05978a300715faf60bc07652cbefc08ba;p=pf3gnuchains%2Fpf3gnuchains3x.git Added printing of symbols on AVR disasm --- diff --git a/opcodes/avr-dis.c b/opcodes/avr-dis.c index cf20edcfcd..74e265c175 100644 --- a/opcodes/avr-dis.c +++ b/opcodes/avr-dis.c @@ -367,13 +367,13 @@ print_insn_avr(addr, info) (*prin) (stream, "\t; %s", comment1); if (sym_op1) - info->print_address_func(sym_addr1, info); + info->print_address_func (sym_addr1, info); if (*comment2) (*prin) (stream, " %s", comment2); if (sym_op2) - info->print_address_func(sym_addr2, info); + info->print_address_func (sym_addr2, info); return cmd_len; }