diff options
author | David O'Brien <obrien@NUXI.com> | 1999-06-28 07:07:04 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 1999-06-28 07:07:04 +0000 |
commit | eca5590fb816ce6606ab9dc3088ed2f3c156e3af (patch) | |
tree | 5331743f8d2dc0a484b15bdbb20f754ca0472a2c /gcc | |
parent | 44e3d967f7cf6cf2c1e49f19708abbffdf0e3dd7 (diff) | |
download | gcc-eca5590fb816ce6606ab9dc3088ed2f3c156e3af.zip gcc-eca5590fb816ce6606ab9dc3088ed2f3c156e3af.tar.gz gcc-eca5590fb816ce6606ab9dc3088ed2f3c156e3af.tar.bz2 |
inclhack.def (stdio_va_list): This patch Removes a semicolon from the BSD VA_LIST replacement expression.
* fixinc/inclhack.def(stdio_va_list): This patch Removes a
semicolon from the BSD VA_LIST replacement expression.
* fixinc/inclhack.sh: regen
* fixinc/fixincl.x: regen
* fixinc/mkfixinc.sh: Have `i[34567]86-*-freebsd*' machines
now use the fixincl program.
From-SVN: r27811
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/fixinc/fixincl.x | 2 | ||||
-rw-r--r-- | gcc/fixinc/inclhack.def | 2 | ||||
-rwxr-xr-x | gcc/fixinc/inclhack.sh | 2 | ||||
-rwxr-xr-x | gcc/fixinc/mkfixinc.sh | 3 |
5 files changed, 15 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca4d2ca..24bbd79 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +1999-06-28 "David O'Brien" <obrien@NUXI.com> + + * fixinc/inclhack.def(stdio_va_list): This patch Removes a + semicolon from the BSD VA_LIST replacement expression. + + * fixinc/inclhack.sh: regen + * fixinc/fixincl.x: regen + + * fixinc/mkfixinc.sh: Have `i[34567]86-*-freebsd*' machines + now use the fixincl program. + Mon Jun 28 05:28:12 1999 Jeffrey A Law (law@cygnus.com) * m68k.h (CONDITIONAL_REGISTER_USAGE): Define for !SUN_FPA diff --git a/gcc/fixinc/fixincl.x b/gcc/fixinc/fixincl.x index 7acc232..e451a91 100644 --- a/gcc/fixinc/fixincl.x +++ b/gcc/fixinc/fixincl.x @@ -2412,7 +2412,7 @@ const char* apzStdio_Va_ListPatch[] = { "sh", "-c", \n\ sed -e 's@ va_list @ __gnuc_va_list @' \\\n\ -e 's@ va_list)@ __gnuc_va_list)@' \\\n\ - -e 's@ _BSD_VA_LIST_));@ __gnuc_va_list));@' \\\n\ + -e 's@ _BSD_VA_LIST_))@ __gnuc_va_list))@' \\\n\ -e 's@ _VA_LIST_));@ __gnuc_va_list));@' \\\n\ -e 's@ va_list@ __va_list__@' \\\n\ -e 's@\\*va_list@*__va_list__@' \\\n\ diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 58f40fc..bf5d302 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -1435,7 +1435,7 @@ fix = { sed -e 's@ va_list @ __gnuc_va_list @' \\ -e 's@ va_list)@ __gnuc_va_list)@' \\ - -e 's@ _BSD_VA_LIST_));@ __gnuc_va_list));@' \\ + -e 's@ _BSD_VA_LIST_))@ __gnuc_va_list))@' \\ -e 's@ _VA_LIST_));@ __gnuc_va_list));@' \\ -e 's@ va_list@ __va_list__@' \\ -e 's@\\*va_list@*__va_list__@' \\ diff --git a/gcc/fixinc/inclhack.sh b/gcc/fixinc/inclhack.sh index 02131d3..e441eb9 100755 --- a/gcc/fixinc/inclhack.sh +++ b/gcc/fixinc/inclhack.sh @@ -2042,7 +2042,7 @@ typedef __regmatch_t regmatch_t; sed -e 's@ va_list @ __gnuc_va_list @' \ -e 's@ va_list)@ __gnuc_va_list)@' \ - -e 's@ _BSD_VA_LIST_));@ __gnuc_va_list));@' \ + -e 's@ _BSD_VA_LIST_))@ __gnuc_va_list))@' \ -e 's@ _VA_LIST_));@ __gnuc_va_list));@' \ -e 's@ va_list@ __va_list__@' \ -e 's@\*va_list@*__va_list__@' \ diff --git a/gcc/fixinc/mkfixinc.sh b/gcc/fixinc/mkfixinc.sh index 7e65168..98174c5 100755 --- a/gcc/fixinc/mkfixinc.sh +++ b/gcc/fixinc/mkfixinc.sh @@ -40,8 +40,7 @@ case $machine in *-*-netbsd* | \ alpha*-*-linux-gnulibc1* | \ - i[34567]86-*-freebsd* | \ - i[34567]86-*-netbsd* | i[34567]86-*-openbsd* | \ + i[34567]86-*-openbsd* | \ i[34567]86-*-solaris2* | \ sparcv9-*-solaris2* | \ powerpcle-*-solaris2* | \ |