From 38fff71d886c5d2b6ecb919c019440f0d1363b75 Mon Sep 17 00:00:00 2001 From: "Arthur A. Gleckler" Date: Wed, 1 Sep 2010 20:48:14 -0700 Subject: [PATCH] Removed the divisions by zero that I had used to create floating-point infinities since those are supposed to trap, not actually return infinities. On OS X, the trap doesn't happen, but I shouldn't depend on a bug. --- tests/microcode/test-flonum-casts.scm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/microcode/test-flonum-casts.scm b/tests/microcode/test-flonum-casts.scm index e27e60d16..48b7a6418 100644 --- a/tests/microcode/test-flonum-casts.scm +++ b/tests/microcode/test-flonum-casts.scm @@ -53,10 +53,6 @@ USA. flonum (itof integer-as-bit-string))) - (test (/ 1.0 0.0) - #*0111111111110000000000000000000000000000000000000000000000000000) - (test (/ -1.0 0.0) - #*1111111111110000000000000000000000000000000000000000000000000000) (test 0.0 #*0000000000000000000000000000000000000000000000000000000000000000) (test -0.0 -- 2.25.1