forked from seank/FreeScale-s12x-binutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gas/i860/i860.exp: Don't call exit if the target isn't an i860.
- Loading branch information
Richard Earnshaw
committed
May 23, 2003
1 parent
23c6074
commit 84b42e9
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
# i860 assembler testsuite. | ||
|
||
if ![istarget i860-*-*] { | ||
exit | ||
} | ||
|
||
foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/*.s]] { | ||
set file [file tail $file] | ||
set file [file rootname $file] | ||
run_dump_test "$file" | ||
} | ||
|
||
if [istarget i860-*-*] { | ||
foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/*.s]] { | ||
set file [file tail $file] | ||
set file [file rootname $file] | ||
run_dump_test "$file" | ||
} | ||
} |