]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
builtins-config.h (HAVE_C99_RUNTIME): Do not define for FreeBSD up to and including...
authorGerald Pfeifer <gerald@pfeifer.com>
Wed, 29 Jul 2009 21:44:37 +0000 (21:44 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Wed, 29 Jul 2009 21:44:37 +0000 (21:44 +0000)
* gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Do not define
for FreeBSD up to and including version 8.

From-SVN: r150229

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/builtins-config.h

index 8b518222a5282f0e79c73d6f888c59212e25111d..6760bc905432281c8cc285345f7274ab5a01acd4 100644 (file)
@@ -1,3 +1,8 @@
+2009-07-29  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Do not define
+       for FreeBSD up to and including version 8.
+
 2009-07-25  Uros Bizjak  <ubizjak@gmail.com>
 
        * lib/target-supports.exp (check_effective_target_static): New
index a6d280ac509a902846f06688bb1c96b70a38c7b9..4c6a444ed4b1b48c06571a036e39f55b3f8aff1b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation.
+/* Copyright (C) 2003, 2004, 2005, 2006, 2009 Free Software Foundation.
 
    Define macros useful in tests for bulitin functions.  */
 
@@ -13,8 +13,8 @@
 /* PA HP-UX doesn't have the entire C99 runtime.  */
 #elif defined(__sgi)
 /* Irix6 doesn't have the entire C99 runtime.  */
-#elif defined(__FreeBSD__) && (__FreeBSD__ < 5)
-/* FreeBSD before version 5 doesn't have the entire C99 runtime. */
+#elif defined(__FreeBSD__) && (__FreeBSD__ < 9)
+/* FreeBSD up to version 8 lacks support for cexp and friends.  */
 #elif defined(__netware__)
 /* NetWare doesn't have the entire C99 runtime.  */
 #elif defined(__vxworks)