* gas/all/gas.exp (forward references): Don't test c30.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / ieee-fp / x930509a.exp
CommitLineData
252b5132
RH
1# Reported 93/05/09 by Jim Wilson: IEEE single-precision FLT_MIN value gets
2# assembled incorrectly. (Off by one ulp.)
3
4proc dotest {} {
5 set testname "IEEE FLT_MIN, single-precision"
6 set x 0
7 gas_start "x930509a.s" "-al"
8 while 1 {
9 expect {
224de7a5
AM
10 -re " 00 ?00 ?80 ?00\[ \]+.single" { pass $testname; set x 1 }
11 -re " 00 ?80 ?00 ?00\[ \]+.single" { pass $testname; set x 1 }
12 -re ".single" { fail $testname; set x 1 }
252b5132
RH
13 -re "\[^\n\]*\n" { }
14 timeout { perror "timeout\n"; break }
15 eof { break }
16 }
17 }
18 gas_finish
19 if !$x then { fail "$testname (listing didn't match)" }
20}
21
4b620509 22# C54x alignment/addressing is different, so the listing looks different
483f05e3
HPN
23# float encoding is tested in c54x-specific tests.
24# No floating point support in assembly code for CRIS.
8bda4946 25if { ![istarget vax*-*-*] && ![istarget *c54x*-*-*] && ![istarget *c30*-*-*]
0d2bcfaf 26 && ![istarget cris-*-*] && ![istarget arc*-*-*] } then {
252b5132
RH
27 dotest
28}
This page took 0.132654 seconds and 4 git commands to generate.