6436b4293bf5d237feb4e4ae73633f40d1c99868
[deliverable/binutils-gdb.git] / gas / testsuite / gas / ieee.fp / x930509a.exp
1 # Reported 93/05/09 by Jim Wilson: IEEE single-precision FLT_MIN value gets
2 # assembled incorrectly. (Off by one ulp.)
3
4 setup_xfail *-*-*
5 proc dotest {} {
6 set testname "IEEE FLT_MIN, single-precision"
7 set x 0
8 gas_start "x930509a.s" "-al"
9 while 1 {
10 expect {
11 -re " 00008000 +.single" { pass $testname; set x 1 }
12 -re " ........ +.single" { fail $testname; set x 1 }
13 -re "\[^\n\]*\n" { }
14 timeout { error "timeout\n"; break }
15 eof { break }
16 }
17 }
18 gas_finish
19 if !$x then { fail "$testname (listing didn't match)" }
20 }
21
22 dotest
This page took 0.030133 seconds and 3 git commands to generate.