This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] [Visium] Disassemble the operands of the stop instruction.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=2a6969e1738859ea8c12837fb0cba3845bc87ceb

commit 2a6969e1738859ea8c12837fb0cba3845bc87ceb
Author: Eric Botcazou <ebotcazou@gcc.gnu.org>
Date:   Wed Oct 18 16:30:24 2017 +0200

    [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.

Diff:
---
 binutils/ChangeLog   | 4 ++++
 binutils/MAINTAINERS | 1 +
 opcodes/ChangeLog    | 4 ++++
 opcodes/visium-dis.c | 2 +-
 4 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 89359bd..ee0b81e 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2017-10-18  Eric Botcazou  <ebotcazou@adacore.com>
+
+	* MAINTAINERS: Add myself as Visium maintainer.
+
 2017-10-18  Nick Clifton  <nickc@redhat.com>
 
 	* README-how-to-make-a-release: A note about checking file and
diff --git a/binutils/MAINTAINERS b/binutils/MAINTAINERS
index 8f9d94c..6a06357 100644
--- a/binutils/MAINTAINERS
+++ b/binutils/MAINTAINERS
@@ -134,6 +134,7 @@ responsibility among the other maintainers.
   TILEPro          Walter Lee <walt@tilera.com>
   VAX		   Matt Thomas <matt@netbsd.org>
   VAX		   Jan-Benedict Glaw <jbglaw@lug-owl.de>
+  Visium	   Eric Botcazou <ebotcazou@libertysurf.fr>
   VMS		   Tristan Gingold <tgingold@free.fr>
   x86_64	   Jan Hubicka <jh@suse.cz>
   x86_64	   Andreas Jaeger <aj@suse.de>
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index eebf69e..7656d4f 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2017-10-18  Eric Botcazou  <ebotcazou@adacore.com>
+
+	* visium-dis.c (disassem_class1) <case 0>: Print the operands.
+
 2017-10-12  James Bowman  <james.bowman@ftdichip.com>
 
 	* ft32-dis.c (print_insn_ft32): Replace FT32_FLD_K8 with K15.
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.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]