diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2017-10-18 16:30:24 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2017-10-18 16:30:24 +0200 |
commit | 2a6969e1738859ea8c12837fb0cba3845bc87ceb (patch) | |
tree | a2363fe067c2cf2ae7479582820146afcdcf65bc /opcodes/visium-dis.c | |
parent | 8ef027f00ba0252e22ce548c3d270db978184b5a (diff) | |
download | gdb-2a6969e1738859ea8c12837fb0cba3845bc87ceb.zip gdb-2a6969e1738859ea8c12837fb0cba3845bc87ceb.tar.gz gdb-2a6969e1738859ea8c12837fb0cba3845bc87ceb.tar.bz2 |
[Visium] Disassemble the operands of the stop instruction.
binutils/
* MAINTAINERS: Add myself as Visium maintainer.
opcodes/
* visium-dis.c (disassem_class1) <case 0>: Print the operands.
Diffstat (limited to 'opcodes/visium-dis.c')
-rw-r--r-- | opcodes/visium-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/visium-dis.c b/opcodes/visium-dis.c index eb2930b..cd67cda 100644 --- a/opcodes/visium-dis.c +++ b/opcodes/visium-dis.c @@ -189,7 +189,7 @@ disassem_class1 (disassemble_info *info, unsigned int ins) { case 0: /* Stop. */ - (*info->fprintf_func) (info->stream, "stop"); + (*info->fprintf_func) (info->stream, "stop %d,r%d", indx, source_a); break; case 1: /* BMI - Block Move Indirect. */ |