From: Doug Evans Date: Fri, 5 Feb 1999 00:01:20 +0000 (+0000) Subject: s/sanitize-m32rx/sanitize-cygnus/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8f10877cfe34a95c7adcf4d0e12e3a1a44eb6b8;p=binutils-gdb.git s/sanitize-m32rx/sanitize-cygnus/ --- diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 86ed3092779..21372ab15d8 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -427,24 +427,28 @@ else done fi -m32rx_files="ChangeLog m32r-opc.c m32r-opc.h m32r-dis.c m32r-asm.c" -if ( echo $* | grep keep\-m32rx > /dev/null ) ; then - for i in $m32rx_files ; do - if test -f $i && (grep sanitize-m32rx $i > /dev/null) ; then +# N.B. m32rx files are now sanitized with keep-cygnus. +# After 99r1, the sanitization will be removed. +# N.B. there is special sanitization going on here to remove PIPE_[A-Z]*. + +cygnus_files="ChangeLog m32r-opc.c m32r-opc.h m32r-dis.c m32r-asm.c" +if ( echo $* | grep keep\-cygnus > /dev/null ) ; then + for i in $cygnus_files ; do + if test -f $i && (grep sanitize-cygnus $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Keeping m32rx stuff in $i + echo Keeping cygnus stuff in $i fi fi done else - for i in $m32rx_files ; do - if test -f $i && (grep sanitize-m32rx $i > /dev/null) ; then + for i in $cygnus_files ; do + if test -f $i && (grep sanitize-cygnus $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Removing traces of \"m32rx\" from $i... + echo Removing traces of \"cygnus\" from $i... fi cp $i new # The PIPE sanitization will be much cleaner with redact. - sed -e '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' \ + sed -e '/start\-sanitize\-cygnus/,/end\-sanitize\-cygnus/d' \ -e 's/, PIPE_[A-Z]*//g' < $i > new if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${verbose}" ] ; then diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 8eeb943fae2..5ab69ab93b7 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -382,7 +382,7 @@ Wed Nov 4 18:46:47 1998 Dave Brolley * po/POTFILES.in: Regenerated * po/opcodes.pot: Regenerated -start-sanitize-m32rx +start-sanitize-cygnus Mon Nov 2 20:08:03 1998 Doug Evans * m32r-opc.c (m32r_cgen_insn_table_entries): Add FILL_SLOT attribute @@ -390,7 +390,7 @@ Mon Nov 2 20:08:03 1998 Doug Evans (macro_insn_table_entries): Add FILL_SLOT attribute to bcl8r,bncl8r entries. -end-sanitize-m32rx +end-sanitize-cygnus Mon Nov 2 15:05:33 1998 Geoffrey Noer * configure.in: detect cygwin* instead of cygwin32* @@ -609,14 +609,14 @@ Thu Jul 30 21:41:10 1998 Frank Ch. Eigler * d30v-opc.c (d30v_opcode_table): Add new "LKR" flag to some instructions. -start-sanitize-m32rx +start-sanitize-cygnus Tue Jul 28 13:15:39 1998 Doug Evans Add support for new versions of mulwhi,mulwlo,macwhi,macwlo that accept an accumulator choice. * m32r-opc.c,m32r-opc.h: Regenerate. -end-sanitize-m32rx +end-sanitize-cygnus Tue Jul 28 11:00:09 1998 Jeffrey A Law (law@cygnus.com) * m10300-opc.c: Add entries for "no_match_operands" field in @@ -1050,10 +1050,10 @@ Fri May 15 14:58:31 1998 Doug Evans * cgen-opc.c (cgen_hw_lookup_by_name): Renamed from cgen_hw_lookup. (cgen_hw_lookup_by_num): New function. -start-sanitize-m32rx +start-sanitize-cygnus * m32r-opc.c, m32r-opc.h: Regenerate, delete h-abort. -end-sanitize-m32rx +end-sanitize-cygnus Wed May 13 17:03:59 1998 Doug Evans * m32r-asm.c: Regenerate (handle uppercase HIGH/SHIGH/LOW/SDA). @@ -1063,7 +1063,7 @@ Wed May 13 14:34:31 1998 Mark Alexander * sparc-dis.c (print_insn_sparc): Always fetch instructions as big-endian on SPARClite. -start-sanitize-m32rx +start-sanitize-cygnus Tue May 12 13:39:51 1998 Nick Clifton * m32r-opc.c: Regenerated - SPECIAL attribute added to some @@ -1071,7 +1071,7 @@ Tue May 12 13:39:51 1998 Nick Clifton * m32r-opc.h: Regenerated - SPECIAL attribute added to some insns. -end-sanitize-m32rx +end-sanitize-cygnus Tue May 12 11:46:31 1998 Richard Henderson * d30v-opc.c (pre_defined_register): Remove alias for r0. @@ -1319,12 +1319,12 @@ Thu Apr 2 17:25:49 1998 Nick Clifton * m32r-opc.c: Use signed immediate values for CMPUI instruction. -start-sanitize-m32rx +start-sanitize-cygnus Thu Apr 2 16:44:23 1998 Nick Clifton * m32r-opc.c: Fix bit patterns for SAT and SATB. -end-sanitize-m32rx +end-sanitize-cygnus Wed Apr 1 16:20:27 1998 Ian Dall * ns32k-dis.c (bit_extract_simple): New function to extract bits @@ -1332,13 +1332,13 @@ Wed Apr 1 16:20:27 1998 Ian Dall using fetch_data(). (invalid_float): use bit_extract_simple() instead of bit_extract(). -start-sanitize-m32rx +start-sanitize-cygnus Wed Apr 1 14:57:54 1998 Nick Clifton * m32r-opc.c: Fix SATB bit pattern. Add extra control registers. * m32r-opc.h: Add extra control registers. -end-sanitize-m32rx +end-sanitize-cygnus Tue Mar 31 11:09:08 1998 Ian Lance Taylor From H.J. Lu : @@ -1484,13 +1484,13 @@ Tue Mar 24 18:11:13 1998 Jeffrey A Law (law@cygnus.com) opcode extensions. end-sanitize-r5900 -start-sanitize-m32rx +start-sanitize-cygnus Mon Mar 23 11:32:11 1998 Nick Clifton * m32r-opc.c (m32r_cgen_insn_table_entries): Fix SATH bit pattern (PR15418). -end-sanitize-m32rx +end-sanitize-cygnus start-sanitize-sky Mon Mar 23 09:45:04 1998 Doug Evans @@ -1881,14 +1881,14 @@ Mon Feb 2 19:22:15 1998 Steve Haworth (ALL_MACHINES): Add tic30-dis.lo. * configure, Makefile.in: Rebuild. -start-sanitize-m32rx +start-sanitize-cygnus Mon Feb 2 11:04:08 1998 Nick Clifton * m32r-opc.c, m32r-opc.h, m32r-asm.c m32r-dis.c: Newly generated versions after updates to m32r.cpu to remove mulwhi-a, mulwlo-a, macwhi-a and macwlo-a instructions. -end-sanitize-m32rx +end-sanitize-cygnus start-sanitize-sky Fri Jan 30 17:39:21 1998 Ian Carmichael