This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: Disable IEEE tests on VAX


The following patch was suggested by Zack Weinberg.  I have checked that
it sucessfully disables the ieee floating point tests on the VAX.  I have
also checked that the tests still run without any problems under i686.

OK for branch and main?

Dave
-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)

2001-05-07  John David Anglin  <dave@hiauly1.hia.nrc.ca>

	* gcc.c-torture/execute/ieee/ieee.exp: Don't run ieee tests on VAX.

--- gcc.c-torture/execute/ieee/ieee.exp.orig	Wed Dec 16 17:16:49 1998
+++ gcc.c-torture/execute/ieee/ieee.exp	Mon Apr 30 12:47:18 2001
@@ -24,6 +24,9 @@
 # C torture test suite, and other contributors.
 #
 
+# VAX does not have hardware support for IEEE arithmetic.
+if { [istarget "vax-*-*"] } { return }
+
 if $tracelevel then {
     strace $tracelevel
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]