summaryrefslogtreecommitdiff
path: root/opcodes/avr-dis.c
diff options
context:
space:
mode:
authorSvein Seldal <svein@dev.seldal.com>2004-12-14 22:30:28 +0000
committerSvein Seldal <svein@dev.seldal.com>2004-12-14 22:30:28 +0000
commit07726f92fbf69f975ad6b7988969f2984e9d40cb (patch)
tree401827bb6360c2bf9a43bb454ba64c4b617ec3aa /opcodes/avr-dis.c
parentd9d857386ae3b0aef8bbe71aefabe81ff8f6bb01 (diff)
downloadbinutils-redhat-07726f92fbf69f975ad6b7988969f2984e9d40cb.tar.gz
Added printing of symbols on AVR disasm
Diffstat (limited to 'opcodes/avr-dis.c')
-rw-r--r--opcodes/avr-dis.c4
1 files changed, 2 insertions, 2 deletions
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;
}