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
commit7a603429de3787549513168dfd9f14107ce42ef3 (patch)
tree2bb88ebf0a3b61a079e78417bf6f86815911c290 /opcodes
parente37ee8c481ab75d16c19a4a4a3dca1f4ea66a833 (diff)
downloadgdb-7a603429de3787549513168dfd9f14107ce42ef3.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 e20ccdecc5d..b64cd1073c9 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 cf20edcfcde..74e265c1757 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;
}