diff options
author | Nick Clifton <nickc@redhat.com> | 1997-09-20 23:59:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1997-09-20 23:59:31 +0000 |
commit | 15d82b260c208ede0e7e608ef88735faf5a14544 (patch) | |
tree | 54ee9672f3877319a3fa00fcc9a7f230b6530557 /bfd/.Sanitize | |
parent | f13f11b494d9e6665897bd3dc785e53fc59d925f (diff) | |
download | gdb-15d82b260c208ede0e7e608ef88735faf5a14544.zip gdb-15d82b260c208ede0e7e608ef88735faf5a14544.tar.gz gdb-15d82b260c208ede0e7e608ef88735faf5a14544.tar.bz2 |
Removed v850eq sanitization.
Changed mismatch architecture message to a warning.
Diffstat (limited to 'bfd/.Sanitize')
-rw-r--r-- | bfd/.Sanitize | 34 |
1 files changed, 2 insertions, 32 deletions
diff --git a/bfd/.Sanitize b/bfd/.Sanitize index a8e356c..c6f6745 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -31,12 +31,6 @@ else lose_these_too="${tic80_files} ${lose_these_too}" fi -if ( echo $* | grep keep\-v850 > /dev/null ) ; then - keep_these_too="cpu-v850.c elf32-v850.c ${keep_these_too}" -else - lose_these_too="cpu-v850.c elf32-v850.c ${lose_these_too}" -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 @@ -140,6 +134,7 @@ cpu-powerpc.c cpu-rs6000.c cpu-sh.c cpu-sparc.c +cpu-v850.c cpu-vax.c cpu-we32k.c cpu-w65.c @@ -168,6 +163,7 @@ elf-m10300.c elf32-ppc.c elf32-sh.c elf32-sparc.c +elf32-v850.c elf32.c elf64-alpha.c elf64-gen.c @@ -322,32 +318,6 @@ else fi v850_files="ChangeLog Makefile.in Makefile.am archures.c reloc.c targets.c config.bfd configure.in configure bfd-in2.h elf.c libbfd.h elf32-v850.c cpu-v850.c" -if ( echo $* | grep keep\-v850eq > /dev/null ) ; then - for i in $v850_files ; do - if test -r $i && (grep sanitize-v850eq $i > /dev/null) ; then - if [ -n "${verbose}" ] ; then - echo Keeping v850eq stuff in $i - fi - fi - done -else - for i in $v850_files ; do - if test -f $i && (grep sanitize-v850eq $i > /dev/null) ; then - if [ -n "${verbose}" ] ; then - echo Removing traces of \"v850eq\" from $i... - fi - cp $i new - sed '/start\-sanitize\-v850eq/,/end\-sanitize\-v850eq/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 if ( echo $* | grep keep\-v850e > /dev/null ) ; then for i in $v850_files ; do if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then |