Added printing of symbols on AVR disasm

This commit is contained in:
Svein Seldal 2004-12-14 22:30:28 +00:00
parent 246f4c05fd
commit 73f643e98f

View file

@ -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;
}