diff options
author | Svein Seldal <svein@dev.seldal.com> | 2004-12-14 22:30:28 +0000 |
---|---|---|
committer | Svein Seldal <svein@dev.seldal.com> | 2004-12-14 22:30:28 +0000 |
commit | 73f643e98fef5823b114a66eb8283e880b72fc69 (patch) | |
tree | f2f7211183553bb96a13b9bcf2aecb6470aaa4aa /opcodes/avr-dis.c | |
parent | 246f4c05fd23d6504e1a1a5199f21b91755c6666 (diff) | |
download | gdb-73f643e98fef5823b114a66eb8283e880b72fc69.zip gdb-73f643e98fef5823b114a66eb8283e880b72fc69.tar.gz gdb-73f643e98fef5823b114a66eb8283e880b72fc69.tar.bz2 |
Added printing of symbols on AVR disasm
Diffstat (limited to 'opcodes/avr-dis.c')
-rw-r--r-- | opcodes/avr-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/avr-dis.c b/opcodes/avr-dis.c index cf20edc..74e265c 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; } |