Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b4e01caa
Commit
b4e01caa
authored
Jun 10, 1999
by
Bruce Korb
Committed by
Bruce Korb
Jun 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a selection expression, skip a bypass
From-SVN: r27468
parent
3175776e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
14 deletions
+8
-14
gcc/ChangeLog
+2
-0
gcc/fixinc/fixincl.x
+4
-11
gcc/fixinc/inclhack.sh
+2
-3
No files found.
gcc/ChangeLog
View file @
b4e01caa
...
...
@@ -3,6 +3,8 @@ 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.
*fixinc/fixincl.x: regen
*fixinc/inclhack.sh: regen
Thu Jun 10 15:08:15 1999 Nick Clifton <nickc@cygnus.com>
...
...
gcc/fixinc/fixincl.x
View file @
b4e01caa
...
...
@@ -1104,7 +1104,7 @@ tSCC zIoctl_Fix_CtrlName[] =
* content selection pattern - do fix if pattern found
*/
tSCC zIoctl_Fix_CtrlSelect0[] =
"CTRL[ \t]";
"CTRL[ \t]
*\\(
";
#define IOCTL_FIX_CTRL_TEST_CT 1
#define IOCTL_FIX_CTRL_RE_CT 1
...
...
@@ -2619,16 +2619,9 @@ tSCC zSun_Auth_ProtoList[] =
tSCC zSun_Auth_ProtoSelect0[] =
"\\(\\*[a-z][a-z_]*\\)\\(\\)";
/*
* content bypass pattern - skip fix if pattern found
*/
tSCC zSun_Auth_ProtoBypass0[] =
"^[a-zA-Z0-9_ \t]*\\(\\*[a-z][a-z_]*\\)\\([ \t]*[a-zA-Z.].*\\)";
#define SUN_AUTH_PROTO_TEST_CT 2
#define SUN_AUTH_PROTO_RE_CT 2
#define SUN_AUTH_PROTO_TEST_CT 1
#define SUN_AUTH_PROTO_RE_CT 1
tTestDesc aSun_Auth_ProtoTests[] = {
{ TT_NEGREP, zSun_Auth_ProtoBypass0, (regex_t*)NULL },
{ TT_EGREP, zSun_Auth_ProtoSelect0, (regex_t*)NULL }, };
/*
...
...
@@ -3815,7 +3808,7 @@ cat > /dev/null",
*
* List of all fixes
*/
#define REGEX_COUNT 7
5
#define REGEX_COUNT 7
4
#define FIX_COUNT 104
tFixDesc fixDescList[ FIX_COUNT ] = {
{ zAix_SyswaitName, zAix_SyswaitList,
...
...
gcc/fixinc/inclhack.sh
View file @
b4e01caa
...
...
@@ -1078,7 +1078,7 @@ extern "C" {\
#
# Fix 31: Ioctl_Fix_Ctrl
#
if
(
test
-n
"
`
egrep
'CTRL[ ]'
${
file
}
`
"
if
(
test
-n
"
`
egrep
'CTRL[ ]
*\\(
'
${
file
}
`
"
)
>
/dev/null 2>&1
;
then
fixlist
=
"
${
fixlist
}
ioctl_fix_ctrl"
...
...
@@ -2166,8 +2166,7 @@ void (*signal(...))(...);\
./rpc/clnt.h
|
\
./rpc/svc.h
|
\
./rpc/xdr.h
)
if
(
test
-n
"
`
egrep
'\\(\\*[a-z][a-z_]*\\)\\(\\)'
${
file
}
`
"
-a
\
-z
"
`
egrep
'^[a-zA-Z0-9_ ]*\\(\\*[a-z][a-z_]*\\)\\([ ]*[a-zA-Z.].*\\)'
${
file
}
`
"
if
(
test
-n
"
`
egrep
'\\(\\*[a-z][a-z_]*\\)\\(\\)'
${
file
}
`
"
)
>
/dev/null 2>&1
;
then
fixlist
=
"
${
fixlist
}
sun_auth_proto"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment