diff options
Diffstat (limited to 'bfd/.Sanitize')
-rw-r--r-- | bfd/.Sanitize | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bfd/.Sanitize b/bfd/.Sanitize index 78022f8..1df4a0c 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -31,6 +31,14 @@ else lose_these_too="${d10v_files} ${lose_these_too}" fi +m32r_files="cpu-m32r.c elf32-m32r.c" + +if ( echo $* | grep keep\-m32r > /dev/null ) ; then + keep_these_too="${m32r_files} ${keep_these_too}" +else + lose_these_too="${m32r_files} ${lose_these_too}" +fi + v850_files="cpu-v850.c elf32-v850.c" if ( echo $* | grep keep\-v850 > /dev/null ) ; then @@ -333,7 +341,7 @@ else done fi -m32r_files="ChangeLog Makefile.in archures.c config.bfd configure.in configure elf.c targets.c" +m32r_files="ChangeLog Makefile.in config.bfd configure.in configure elf.c archures.c reloc.c targets.c bfd-in2.h libbfd.h" if ( echo $* | grep keep\-m32r > /dev/null ) ; then for i in $m32r_files ; do if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then |