]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
builtins-config.h (HAVE_C99_RUNTIME): Don't define for PA HP-UX.
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Wed, 25 Feb 2004 18:25:08 +0000 (18:25 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Wed, 25 Feb 2004 18:25:08 +0000 (18:25 +0000)
* gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Don't define for PA
HP-UX.

From-SVN: r78443

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

index dcfb7ba08b176a71918193e703645a624467ae7b..d5558e359fd3a28b7cb5a2b9b16df7739edc7622 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-25  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       * gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Don't define for PA
+       HP-UX.
+
 2004-02-24  Michael Matz  <matz@suse.de>
 
        * gcc.dg/i386-regparm.c: New.
index 11f7c11ee4f916b745edf1f1f853177d6c58c55b..9d9922a68cca1ab0e641358445014a496524eae7 100644 (file)
@@ -9,6 +9,9 @@
    indicating whether or not TARGET_C99_FUNCTIONS is set, but it does
    not presently do that.)  */
 
+#if defined(__hppa) && defined(__hpux)
+/* PA HP-UX doesn't have the entire C99 runtime.  */
+#else
 #if defined(sun)
 /* Solaris doesn't have the entire C99 runtime.  */
 #else
@@ -27,3 +30,4 @@
 #define HAVE_C99_RUNTIME
 #endif
 #endif
+#endif