+Wed Dec 7 16:49:14 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
+
+ * gas/ieee-fp: Renamed from ieee.fp.
+
+Wed Nov 30 10:48:00 1994 Jeff Law (law@snake.cs.utah.edu)
+
+ * gas/hppa/parse: Renamed from gas/hppa/more.parse.
+
Mon Nov 28 00:40:26 1994 Jeff Law (law@snake.cs.utah.edu)
* gas/hppa/more.parse/parse.exp (nosubspace.s): No longer expected
+++ /dev/null
-# Reported 93/05/09 by Jim Wilson: IEEE single-precision FLT_MIN value gets
-# assembled incorrectly. (Off by one ulp.)
-
-setup_xfail *-*-*
-proc dotest {} {
- set testname "IEEE FLT_MIN, single-precision"
- set x 0
- gas_start "x930509a.s" "-al"
- while 1 {
- expect {
- -re " 00008000 +.single" { pass $testname; set x 1 }
- -re " ........ +.single" { fail $testname; set x 1 }
- -re "\[^\n\]*\n" { }
- timeout { perror "timeout\n"; break }
- eof { break }
- }
- }
- gas_finish
- if !$x then { fail "$testname (listing didn't match)" }
-}
-
-dotest