diff options
| author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-27 17:58:36 +0000 |
|---|---|---|
| committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-27 17:58:36 +0000 |
| commit | ca40cb68a4cd5e983ad06a4c1f62da66bfcbfe95 (patch) | |
| tree | 16ea6cfb6fd065469f8fc8f64ab7efea0e7bb4fd | |
| parent | 281c807353646569dc8c309a9f7f9c30710d18a1 (diff) | |
| download | ppe42-gcc-ca40cb68a4cd5e983ad06a4c1f62da66bfcbfe95.tar.gz ppe42-gcc-ca40cb68a4cd5e983ad06a4c1f62da66bfcbfe95.zip | |
* fixinc/inclhack.def (libc1_G_va_list): Correct test_text.
* fixinc/tests/base/_G_config.h: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58585 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/fixinc/inclhack.def | 2 | ||||
| -rw-r--r-- | gcc/fixinc/tests/base/_G_config.h | 14 |
3 files changed, 20 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d1ef858a00..caba3b39300 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-10-27 Hans-Peter Nilsson <hp@bitrange.com> + + * fixinc/inclhack.def (libc1_G_va_list): Correct test_text. + * fixinc/tests/base/_G_config.h: New file. + 2002-10-27 Kazu Hirata <kazu@cs.umass.edu> * combine.c: Fix comment formatting. diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 677b3cc147a..f332965da06 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -1491,7 +1491,7 @@ fix = { select = 'typedef void \* _G_va_list;'; c_fix = format; c_fix_arg = "typedef __builtin_va_list _G_va_list;"; - test_text = 'typedef __builtin_va_list _G_va_list;'; + test_text = 'typedef void * _G_va_list;'; }; diff --git a/gcc/fixinc/tests/base/_G_config.h b/gcc/fixinc/tests/base/_G_config.h new file mode 100644 index 00000000000..99f0c82223c --- /dev/null +++ b/gcc/fixinc/tests/base/_G_config.h @@ -0,0 +1,14 @@ +/* DO NOT EDIT THIS FILE. + + It has been auto-edited by fixincludes from: + + "fixinc/tests/inc/_G_config.h" + + This had to be done to correct non-standard usages in the + original, manufacturer supplied header file. */ + + + +#if defined( LIBC1_G_VA_LIST_CHECK ) +typedef __builtin_va_list _G_va_list; +#endif /* LIBC1_G_VA_LIST_CHECK */ |

