builtins-config.h (HAVE_C99_RUNTIME): Don't define for PA HP-UX.

* gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Don't define for PA
	HP-UX.

From-SVN: r78443
This commit is contained in:
John David Anglin 2004-02-25 18:25:08 +00:00 committed by John David Anglin
parent 81fbecace5
commit 0193f437a1
2 changed files with 9 additions and 0 deletions

View 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.

View 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