diff options
author | Bruce Korb <ddsinc09@ix.netcom.com> | 1999-06-10 07:25:33 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 1999-06-10 07:25:33 +0000 |
commit | 3175776ecac2dd586ceff99dfbd5c83f73beb65e (patch) | |
tree | e460e96508743cdf911ceadfba47d5821df99524 /gcc | |
parent | 6cf32035ac53a38a69c92440a3e8910525677e76 (diff) | |
download | gcc-3175776ecac2dd586ceff99dfbd5c83f73beb65e.zip gcc-3175776ecac2dd586ceff99dfbd5c83f73beb65e.tar.gz gcc-3175776ecac2dd586ceff99dfbd5c83f73beb65e.tar.bz2 |
fix a selection expression, skip a bypass
From-SVN: r27467
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fixinc/inclhack.def | 8 |
2 files changed, 8 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c52ae7e..be98eeb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Thu Jun 10 06:55 1999 Bruce Korb <ddsinc09@ix.netcom.com> + + *fixinc/inclhack.def(sun_auth_proto): We do not know how to + test for the presence of valid prototypes. Delete bypass expr. + (ioctl_fix_ctrl): Correct the selection expression. + Thu Jun 10 15:08:15 1999 Nick Clifton <nickc@cygnus.com> * config/arm/arm.c (struct all_cores): Add ARM920 and ARM920t. diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 7153970..829c83e 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -600,7 +600,7 @@ fix = { */ fix = { hackname = ioctl_fix_ctrl; - select = "CTRL[ \t]"; + select = "CTRL[ \t]*\\("; sed = "/[^A-Z0-9_]CTRL[ \t]*(/" "s/\\([^']\\))/'\\1')/"; @@ -1517,13 +1517,9 @@ fix = { files = rpc/svc.h; files = rpc/xdr.h; /* - * Select those files containing '(*name)()' but *not* - * containing '(*name)(junk)'. The change would be innocuous - * but there is no point bothering if the fix is not needed. + * Select those files containing '(*name)()'. */ select = '\(\*[a-z][a-z_]*\)\(\)'; - bypass = "^[a-zA-Z0-9_ \t]*" '\(\*[a-z][a-z_]*\)\(' - "[ \t]*[a-zA-Z.].*" '\)'; sed = 's' '/^\(.*(\*[a-z][a-z_]*)(\)' '\();.*\)' "/\\\n" |