Remove some of the hppa testsuite fudges for hppa-linux.

This commit is contained in:
Alan Modra 2000-07-10 14:59:48 +00:00
parent 3c9f43b196
commit 12c616f16e
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-07-10 Alan Modra <alan@linuxcare.com.au>
* lib/utils-lib.exp (default_binutils_assemble): Don't do the hppa
sed fudges for hppa-linux.
2000-07-01 Frank Ch. Eigler <fche@redhat.com>
* binutils-all/objdump.exp (cpus_expected, cpus_regex): Reorganize

View File

@ -90,10 +90,11 @@ proc default_binutils_assemble { source object } {
# This is a hack in that it won't scale well if other targets need
# similar transformations to assemble. We'll generalize the hack
# if/when other targets need similar handling.
if [istarget "hppa*-*-*" ] then {
send_log "sed -f $srcdir/config/hppa.sed < $source > asm.s\n"
verbose "sed -f $srcdir/config/hppa.sed < $source > asm.s"
catch "exec sed -f $srcdir/config/hppa.sed < $source > asm.s";
if { [istarget "hppa*-*-*"] && ![istarget "*-*-linux*" ] } then {
set sed_file $srcdir/config/hppa.sed
send_log "sed -f $sed_file < $source > asm.s\n"
verbose "sed -f $sed_file < $source > asm.s"
catch "exec sed -f $sed_file < $source > asm.s";
set source asm.s
}