* include/opcode/mips.h (INSN_4900): Added.
authorGavin Romig-Koch <gavin@redhat.com>
Wed, 29 Oct 1997 22:44:29 +0000 (22:44 +0000)
committerGavin Romig-Koch <gavin@redhat.com>
Wed, 29 Oct 1997 22:44:29 +0000 (22:44 +0000)
include/opcode/.Sanitize
include/opcode/ChangeLog
include/opcode/mips.h

index 35ba9c1b8076df28fc40035bcb5ee49b90d80847..615390f9b3a8d5d52b2ffea199baff65c2e60b62 100644 (file)
@@ -128,6 +128,35 @@ else
        done
 fi
 
+tx49_files="ChangeLog mips.h"
+
+if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
+       for i in $tx49_files ; do
+               if test -f $i && (grep sanitize-tx49 $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping tx49 stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $tx49_files ; do
+               if test -f $i && (grep sanitize-tx49 $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"tx49\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
+                       if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+                               if [ -n "${verbose}" ] ; then
+                                       echo Caching $i in .Recover...
+                               fi
+                               mv $i .Recover
+                       fi
+                       mv new $i
+               fi
+       done
+fi
+
 r5900_files="ChangeLog mips.h"
 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
        for i in $r5900_files ; do
index 192841d3a22ba4a4083df600d2baf18dc259134b..d669e2431ea11a18b7fe77264fb5bdd01bc15912 100644 (file)
@@ -1,3 +1,9 @@
+start-sanitize-tx49
+Wed Oct 29 17:33:37 1997  Gavin Koch  <gavin@cygnus.com>
+
+       * mips.h (INSN_4900): Added. 
+
+end-sanitize-tx49
 Fri Oct 24 22:36:20 1997  Ken Raeburn  <raeburn@cygnus.com>
 
        * mips.h: Added to comments a quick-ref list of all assigned
index 416b5fd903f3a0deb818aeb41587aebf43a34ab1..d4dacc186a7f421c7e559b3271f5500b01382e8a 100644 (file)
@@ -343,6 +343,10 @@ end-sanitize-vr5400
 /* Toshiba R5900 instruction */
 #define INSN_5900                   0x00000100
 /* end-sanitize-r5900 */
+/* start-sanitize-tx49 */
+#define INSN_4900                   0x00000200
+/* end-sanitize-tx49 */
+
 
 /* This is a list of macro expanded instructions.
  *
This page took 0.037193 seconds and 4 git commands to generate.