diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-29 02:42:54 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-29 02:42:54 +0000 |
commit | a6c73c6cdf9e1b77cde0358670e9e12738ed7a5c (patch) | |
tree | a1e1ee1792e7ba51745321429ecda36cac31b3d8 /fixincludes | |
parent | a80fab694b7bc50864a1e4335223d21ddf07f408 (diff) | |
download | gcc-a6c73c6cdf9e1b77cde0358670e9e12738ed7a5c.tar.gz |
* inclhack.def (stdio_va_list): Don't fix if stdarg.h is
included or ifdef va_start.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89803 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes')
-rw-r--r-- | fixincludes/ChangeLog | 9 | ||||
-rw-r--r-- | fixincludes/fixincl.x | 13 | ||||
-rw-r--r-- | fixincludes/inclhack.def | 20 |
3 files changed, 27 insertions, 15 deletions
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog index 5161dd6c463..6fba0c3d455 100644 --- a/fixincludes/ChangeLog +++ b/fixincludes/ChangeLog @@ -1,6 +1,13 @@ 2004-10-28 Mike Stump <mrs@apple.com> - * inclhack.def: Avoid changing NULL on C++ friendly systems. + * inclhack.def (stdio_va_list): Don't fix if stdarg.h is + included or ifdef va_start. + * fixincl.x: Regenerate. + +2004-10-28 Mike Stump <mrs@apple.com> + + * inclhack.def (void_null): Avoid changing NULL on C++ friendly + systems. * fixincl.x: Regenerate. 2004-10-27 Geoffrey Keating <geoffk@apple.com> diff --git a/fixincludes/fixincl.x b/fixincludes/fixincl.x index 948c7279376..781c9383f09 100644 --- a/fixincludes/fixincl.x +++ b/fixincludes/fixincl.x @@ -2,11 +2,11 @@ * * DO NOT EDIT THIS FILE (fixincl.x) * - * It has been AutoGen-ed Thursday October 28, 2004 at 01:52:23 PM PDT + * It has been AutoGen-ed Thursday October 28, 2004 at 07:37:27 PM PDT * From the definitions inclhack.def * and the template file fixincl */ -/* DO NOT CVS-MERGE THIS FILE, EITHER Thu Oct 28 13:52:23 PDT 2004 +/* DO NOT CVS-MERGE THIS FILE, EITHER Thu Oct 28 19:37:27 PDT 2004 * * You must regenerate it. Use the ./genfixes script. * @@ -4927,10 +4927,13 @@ tSCC zStdio_Va_ListList[] = */ tSCC zStdio_Va_ListBypass0[] = "__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list"; +tSCC zStdio_Va_ListBypass1[] = + "include <stdarg\\.h>|#ifdef va_start"; -#define STDIO_VA_LIST_TEST_CT 1 +#define STDIO_VA_LIST_TEST_CT 2 static tTestDesc aStdio_Va_ListTests[] = { - { TT_NEGREP, zStdio_Va_ListBypass0, (regex_t*)NULL }, }; + { TT_NEGREP, zStdio_Va_ListBypass0, (regex_t*)NULL }, + { TT_NEGREP, zStdio_Va_ListBypass1, (regex_t*)NULL }, }; /* * Fix Command Arguments for Stdio_Va_List @@ -7146,7 +7149,7 @@ static const char* apzX11_SprintfPatch[] = { * * List of all fixes */ -#define REGEX_COUNT 204 +#define REGEX_COUNT 205 #define MACH_LIST_SIZE_LIMIT 261 #define FIX_COUNT 180 diff --git a/fixincludes/inclhack.def b/fixincludes/inclhack.def index 084594c2c0f..30d8065db45 100644 --- a/fixincludes/inclhack.def +++ b/fixincludes/inclhack.def @@ -2692,15 +2692,14 @@ fix = { /* - * Don't use or define the name va_list in stdio.h. - * This is for ANSI and also to interoperate properly with gcc's - * varargs.h. Note _BSD_VA_LIST_ is dealt with elsewhere. The - * presence of __gnuc_va_list, __DJ_va_list, or _G_va_list is taken - * to indicate that the header knows what it's doing -- under SUSv2, - * stdio.h is required to define va_list, and we shouldn't break that. - * On IRIX 6.5, internal/wchar_core.h used to get its definition of - * va_list from stdio.h. Since this doesn't happen any longer, use - * __gnuc_va_list there, too. + * Don't use or define the name va_list in stdio.h. This is for + * ANSI. Note _BSD_VA_LIST_ is dealt with elsewhere. The presence + * of __gnuc_va_list, __DJ_va_list, or _G_va_list is taken to + * indicate that the header knows what it's doing -- under SUSv2, + * stdio.h is required to define va_list, and we shouldn't break + * that. On IRIX 6.5, internal/wchar_core.h used to get its + * definition of va_list from stdio.h. Since this doesn't happen any + * longer, use __gnuc_va_list there, too. */ fix = { hackname = stdio_va_list; @@ -2716,6 +2715,9 @@ fix = { files = wchar.h; files = curses_colr/curses.h; bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list'; + /* Don't fix, if we use va_list from stdarg.h, or if the use is + otherwise protected. */ + bypass = 'include <stdarg\.h>|#ifdef va_start'; /* * Use __gnuc_va_list in arg types in place of va_list. |