diff options
author | Michael Tiemann <tiemann@cygnus> | 1994-11-25 00:01:26 +0000 |
---|---|---|
committer | Michael Tiemann <tiemann@cygnus> | 1994-11-25 00:01:26 +0000 |
commit | 03c4ce2fcc3582e65cfe2ec336769074a80f3146 (patch) | |
tree | 9b562805138500c7ec159ab177f2d90c3ba0425d /bfd | |
parent | 5fa60968605904d23a6ce37901c9710295baf0b0 (diff) | |
download | gdb-03c4ce2fcc3582e65cfe2ec336769074a80f3146.zip gdb-03c4ce2fcc3582e65cfe2ec336769074a80f3146.tar.gz gdb-03c4ce2fcc3582e65cfe2ec336769074a80f3146.tar.bz2 |
Rename r16 files to rce, and fix some more .Sanitize typos.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/.Sanitize | 26 | ||||
-rw-r--r-- | bfd/aout-rce.c (renamed from bfd/aout-r16.c) | 0 | ||||
-rw-r--r-- | bfd/archures.c | 12 | ||||
-rwxr-xr-x | bfd/config.bfd | 6 | ||||
-rw-r--r-- | bfd/configure.in | 6 | ||||
-rw-r--r-- | bfd/cpu-rce.c (renamed from bfd/cpu-r16.c) | 2 | ||||
-rw-r--r-- | bfd/targets.c | 12 |
7 files changed, 32 insertions, 32 deletions
diff --git a/bfd/.Sanitize b/bfd/.Sanitize index 24eba61..f3d944f 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -23,12 +23,12 @@ else lose_these_too="${mpw_files} ${lose_these_too}" fi -r16_files="cpu-r16.c aout-r16.c" +rce_files="cpu-rce.c aout-rce.c" -if ( echo $* | grep keep\-r16 > /dev/null ) ; then - keep_these_too="${r16_files} ${keep_these_too}" +if ( echo $* | grep keep\-rce > /dev/null ) ; then + keep_these_too="${rce_files} ${keep_these_too}" else - lose_these_too="${r16_files} ${lose_these_too}" + lose_these_too="${rce_files} ${lose_these_too}" fi # All files listed between the "Things-to-keep:" line and the @@ -263,23 +263,23 @@ else done fi -r16_files = "ChangeLog archures.c config.bfd configure.in targets.c" -if ( echo $* | grep keep\-r16 > /dev/null ) ; then - for i in $r16_files ; do - if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then +rce_files="ChangeLog archures.c config.bfd configure.in targets.c" +if ( echo $* | grep keep\-rce > /dev/null ) ; then + for i in $rce_files ; do + if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Keeping r16 stuff in $i + echo Keeping rce stuff in $i fi fi done else - for i in $r16_files ; do - if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then + for i in $rce_files ; do + if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Removing traces of \"r16\" from $i... + echo Removing traces of \"rce\" from $i... fi cp $i new - sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new + sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${verbose}" ] ; then echo Caching $i in .Recover... diff --git a/bfd/aout-r16.c b/bfd/aout-rce.c index a89f140..a89f140 100644 --- a/bfd/aout-r16.c +++ b/bfd/aout-rce.c diff --git a/bfd/archures.c b/bfd/archures.c index 31acf4a..ea4586d 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -435,9 +435,9 @@ extern void bfd_mips_arch PARAMS ((void)); extern void bfd_powerpc_arch PARAMS ((void)); extern void bfd_rs6000_arch PARAMS ((void)); extern void bfd_sh_arch PARAMS ((void)); -/* start-sanitize-r16 */ -extern void bfd_r16_arch PARAMS ((void)); -/* end-sanitize-r16 */ +/* start-sanitize-rce */ +extern void bfd_rce_arch PARAMS ((void)); +/* end-sanitize-rce */ extern void bfd_sparc_arch PARAMS ((void)); extern void bfd_vax_arch PARAMS ((void)); extern void bfd_we32k_arch PARAMS ((void)); @@ -463,9 +463,9 @@ static void (*archures_init_table[]) PARAMS ((void)) = bfd_powerpc_arch, bfd_rs6000_arch, bfd_sh_arch, -/* start-sanitize-r16 */ - bfd_r16_arch, -/* end-sanitize-r16 */ +/* start-sanitize-rce */ + bfd_rce_arch, +/* end-sanitize-rce */ bfd_sparc_arch, bfd_vax_arch, bfd_we32k_arch, diff --git a/bfd/config.bfd b/bfd/config.bfd index 3f93128..dd28600 100755 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -34,9 +34,9 @@ case "${canon}" in h8300*-*-*) bfd_name=h8300-coff strip_underscore=yes ;; h8500-*-*) bfd_name=h8500-coff strip_underscore=yes ;; sh-*-*) bfd_name=sh-coff strip_underscore=yes ;; -# start-sanitize-r16 - r16-*-aout) bfd_name=r16-aout ;; -# end-sanitize-r16 +# start-sanitize-rce + rce-*-aout) bfd_name=rce-aout ;; +# end-sanitize-rce hppa*-*-*elf*) bfd_name=hppa-elf ;; hppa*-*-bsd*) bfd_name=hppabsd ;; hppa*-*-hpux*) bfd_name=hppahpux ;; diff --git a/bfd/configure.in b/bfd/configure.in index 04a4223..ab3ef94 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -202,9 +202,9 @@ do pc532machaout_vec) tb="$tb pc532-mach.o aout-ns32k.o stab-syms.o" ;; rs6000coff_vec) tb="$tb coff-rs6000.o" ;; shcoff_vec) tb="$tb coff-sh.o cofflink.o" ;; -# start-sanitize-r16 - r16_aout_vec) tb="$tb aout32.o reloc16.o" ;; -# end-sanitize-r16 +# start-sanitize-rce + rce_aout_vec) tb="$tb aout32.o reloc16.o" ;; +# end-sanitize-rce shlcoff_vec) tb="$tb coff-sh.o cofflink.o" ;; som_vec) tb="$tb som.o" ;; sparclynx_aout_vec) tb="$tb sparclynx.o lynx-core.o aout32.o stab-syms.o" ;; diff --git a/bfd/cpu-r16.c b/bfd/cpu-rce.c index 276fe3a..3300b0a 100644 --- a/bfd/cpu-r16.c +++ b/bfd/cpu-rce.c @@ -56,7 +56,7 @@ static bfd_arch_info_type arch_info_struct[] = 32, /* 32 bits in a word */ 32, /* 32 bits in an address */ 8, /* 8 bits in a byte */ - bfd_arch_r16, + bfd_arch_rce, 0, /* only 1 machine */ "SOP", /* arch_name */ "SOP", /* printable name */ diff --git a/bfd/targets.c b/bfd/targets.c index 4bfe769..7fabbac 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -486,9 +486,9 @@ extern const bfd_target pc532machaout_vec; extern const bfd_target riscix_vec; extern const bfd_target rs6000coff_vec; extern const bfd_target shcoff_vec; -/* start-sanitize-r16 */ -extern bfd_target r16_aout_vec; -/* end-sanitize-r16 */ +/* start-sanitize-rce */ +extern bfd_target rce_aout_vec; +/* end-sanitize-rce */ extern const bfd_target shlcoff_vec; extern const bfd_target sparclynx_aout_vec; extern const bfd_target sparclynx_coff_vec; @@ -640,9 +640,9 @@ const bfd_target * const bfd_target_vector[] = { &rs6000coff_vec, &shcoff_vec, &shlcoff_vec, -/* start-sanitize-r16 */ - &r16_aout_vec, -/* end-sanitize-r16 */ +/* start-sanitize-rce */ + &rce_aout_vec, +/* end-sanitize-rce */ &sparclynx_aout_vec, &sparclynx_coff_vec, &sparcnetbsd_vec, |