summaryrefslogtreecommitdiff
path: root/opcodes
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
parentd9d857386ae3b0aef8bbe71aefabe81ff8f6bb01 (diff)
downloadbinutils-redhat-07726f92fbf69f975ad6b7988969f2984e9d40cb.tar.gz
Added printing of symbols on AVR disasm
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/avr-dis.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index e20ccdecc5..b64cd1073c 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-14 Svein E. Seldal <Svein.Seldal@solidas.com>
+
+ * avr-dis.c: Prettyprint. Added printing of symbol names in all
+ memory references. Convert avr_operand() to C90 formatting.
+
2004-12-05 Tomer Levi <Tomer.Levi@nsc.com>
* crx-dis.c (print_arg): Use 'info->print_address_func' for address printing.
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;
}