diff options
author | Jeff Law <law@redhat.com> | 1996-06-18 23:33:49 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-06-18 23:33:49 +0000 |
commit | 88ea21e50cc93ab2b53f38bd58e7111637775199 (patch) | |
tree | a71176937f3e0125760f7a9aa23e5ac71832f36a /sim/h8300 | |
parent | d15396dfe53119c52686697c4651bd646f74ee41 (diff) | |
download | gdb-88ea21e50cc93ab2b53f38bd58e7111637775199.zip gdb-88ea21e50cc93ab2b53f38bd58e7111637775199.tar.gz gdb-88ea21e50cc93ab2b53f38bd58e7111637775199.tar.bz2 |
* compile.c (sim_load): Treat the H8/S like the H8/300H for now.
* run.c (main): Treat the H8/S like the H8/300H for now.
More sanitize H8/S stuff.
Diffstat (limited to 'sim/h8300')
-rw-r--r-- | sim/h8300/.Sanitize | 27 | ||||
-rw-r--r-- | sim/h8300/run.c | 6 |
2 files changed, 32 insertions, 1 deletions
diff --git a/sim/h8300/.Sanitize b/sim/h8300/.Sanitize index 9e8ed06..00d5f5b 100644 --- a/sim/h8300/.Sanitize +++ b/sim/h8300/.Sanitize @@ -17,6 +17,33 @@ Do-first: +h8s_files="ChangeLog compile.c run.c" +if ( echo $* | grep keep\-h8s > /dev/null ) ; then + for i in $h8s_files ; do + if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping h8s stuff in $i + fi + fi + done +else + for i in $h8s_files ; do + if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"h8s\" from $i... + fi + cp $i new + sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/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 # All files listed between the "Things-to-keep:" line and the # "Files-to-sed:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize diff --git a/sim/h8300/run.c b/sim/h8300/run.c index a819569..f19488a 100644 --- a/sim/h8300/run.c +++ b/sim/h8300/run.c @@ -89,7 +89,11 @@ main (ac, av) exit (1); } - if (abfd->arch_info->mach == bfd_mach_h8300h) + if (abfd->arch_info->mach == bfd_mach_h8300h +/* start-sanitize-h8s */ + || abfd->arch_info->mach == bfd_mach_h8300s +/* end-sanitize-h8s */ + ) set_h8300h (1); for (s = abfd->sections; s; s=s->next) |