qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5077] Fix math warnings on OpenBSD -current


From: Blue Swirl
Subject: [Qemu-devel] [5077] Fix math warnings on OpenBSD -current
Date: Sun, 24 Aug 2008 10:29:30 +0000

Revision: 5077
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5077
Author:   blueswir1
Date:     2008-08-24 10:29:29 +0000 (Sun, 24 Aug 2008)

Log Message:
-----------
Fix math warnings on OpenBSD -current

Modified Paths:
--------------
    trunk/fpu/softfloat-native.h

Modified: trunk/fpu/softfloat-native.h
===================================================================
--- trunk/fpu/softfloat-native.h        2008-08-23 23:27:37 UTC (rev 5076)
+++ trunk/fpu/softfloat-native.h        2008-08-24 10:29:29 UTC (rev 5077)
@@ -8,6 +8,11 @@
 #include <fenv.h>
 #endif
 
+#ifdef __OpenBSD__
+/* Get OpenBSD version number */
+#include <sys/param.h>
+#endif
+
 /*
  * Define some C99-7.12.3 classification macros and
  *        some C99-.12.4 for Solaris systems OS less than 10,
@@ -17,7 +22,7 @@
  */
 #if defined(HOST_SOLARIS) && (( HOST_SOLARIS <= 9 ) || ((HOST_SOLARIS >= 10) \
                                                         && (__GNUC__ <= 4))) \
-    || defined(__OpenBSD__)
+    || (defined(__OpenBSD__) && (OpenBSD < 200811))
 /*
  * C99 7.12.3 classification macros
  * and






reply via email to

[Prev in Thread] Current Thread [Next in Thread]