diff options
author | Nick Clifton <nickc@redhat.com> | 1997-08-14 19:45:14 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1997-08-14 19:45:14 +0000 |
commit | a0a6db4bfa745aa9fa90014570bdd25eb2c9fec4 (patch) | |
tree | c0c7e5e16322f849d707d8e7723f7fcf7e3d2891 /sim | |
parent | d2657e3e44baaed7f9f20967892fa1b026bb74d6 (diff) | |
download | gdb-a0a6db4bfa745aa9fa90014570bdd25eb2c9fec4.zip gdb-a0a6db4bfa745aa9fa90014570bdd25eb2c9fec4.tar.gz gdb-a0a6db4bfa745aa9fa90014570bdd25eb2c9fec4.tar.bz2 |
Tidied up sanitization.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/v850/.Sanitize | 8 | ||||
-rw-r--r-- | sim/v850/ChangeLog | 41 |
2 files changed, 45 insertions, 4 deletions
diff --git a/sim/v850/.Sanitize b/sim/v850/.Sanitize index 66aa353..2dc770b 100644 --- a/sim/v850/.Sanitize +++ b/sim/v850/.Sanitize @@ -40,7 +40,7 @@ Do-last: v850e_files="interp.c simops.c v850_sim.h" if ( echo $* | grep keep\-v850e > /dev/null ) ; then for i in $v850e_files ; do - if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then + if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then if [ -n "${verbose}" ] ; then echo Keeping v850e stuff in $i fi @@ -48,7 +48,7 @@ if ( echo $* | grep keep\-v850e > /dev/null ) ; then done else for i in $v850e_files ; do - if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then + if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then if [ -n "${verbose}" ] ; then echo Removing traces of \"v850e\" from $i... fi @@ -66,7 +66,7 @@ else fi if ( echo $* | grep keep\-v850eq > /dev/null ) ; then for i in $v850e_files ; do - if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then + if test -r $i && (grep sanitize-v850eq $i > /dev/null) ; then if [ -n "${verbose}" ] ; then echo Keeping v850eq stuff in $i fi @@ -74,7 +74,7 @@ if ( echo $* | grep keep\-v850eq > /dev/null ) ; then done else for i in $v850e_files ; do - if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then + if test -r $i && (grep sanitize-v850eq $i > /dev/null) ; then if [ -n "${verbose}" ] ; then echo Removing traces of \"v850eq\" from $i... fi diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index 812cfb6..a4d4fbd 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,44 @@ +Wed Aug 13 19:06:55 1997 Nick Clifton <nickc@cygnus.com> + + * interp.c (sim_resume): Opcode functions return amount to be + added to PC and all opcodes take a standard format in the OP[] + array. + + (do_format_*): Functions removed. + + * v850_sim.h (SP, EP): New register mnemonics. + + * gencode.c (write_header): Functions prototypes return an + integer. + + * simops.c: Opcode functions return amount to be added to PC. + +start-sanitize-v850e + * v850_sim.h (CTPC, CTPSW, CTBP): New register mnemonics. + + * simops.c: Add support for v850e instructions. + + * .Sanitize (Do-first, Do-last): Add support for keep-v850e + command line option. + +end-sanitize-v850e + +start-sanitize-v850eq + * .Sanitize (Do-first, Do-last): Add support for keep-v850eq + command line option. + + * simops.c: Add support for v850eq instructions. +end-sanitize-v850eq + +Tue May 20 10:24:14 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * interp.c (sim_open): Add callback argument. + (sim_set_callbacks): Delete SIM_DESC argument. + +Thu Apr 24 00:39:51 1997 Doug Evans <dje@canuck.cygnus.com> + + * configure: Regenerated to track ../common/aclocal.m4 changes. + Wed Apr 23 17:20:16 1997 Doug Evans <dje@canuck.cygnus.com> * interp.c (prog_bfd_was_opened_p): New static local. |