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
e17aafd1
Commit
e17aafd1
authored
Feb 18, 2003
by
Geoffrey Keating
Committed by
Geoffrey Keating
Feb 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c (validate_switches): Don't scan past closing '}'.
From-SVN: r63046
parent
04b03085
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
5 deletions
+12
-5
gcc/ChangeLog
+4
-0
gcc/cp/ChangeLog
+6
-0
gcc/cp/cp-tree.h
+0
-4
gcc/gcc.c
+2
-1
No files found.
gcc/ChangeLog
View file @
e17aafd1
2003
-
02
-
18
Geoffrey
Keating
<
geoffk
@apple
.
com
>
*
gcc
.
c
(
validate_switches
)
:
Don
'
t
scan
past
closing
'}'
.
2003
-
02
-
18
Ben
Elliston
<
bje
@redhat
.
com
>
2003
-
02
-
18
Ben
Elliston
<
bje
@redhat
.
com
>
PR
c
++/
1607
PR
c
++/
1607
...
...
gcc/cp/ChangeLog
View file @
e17aafd1
2003
-
02
-
18
Geoffrey
Keating
<
geoffk
@
apple.com
>
*
cp
-tree.h
(
rid_to_yy
):
Delete.
(
C_RID_YYCODE
):
Delete.
(
finish_file
):
Delete
redundant
declaration.
2003
-
02
-
18
Jason
Merrill
<
jason
@
redhat.com
>
2003
-
02
-
18
Jason
Merrill
<
jason
@
redhat.com
>
PR
c
++/
9623
PR
c
++/
9623
...
...
gcc/cp/cp-tree.h
View file @
e17aafd1
...
@@ -240,9 +240,6 @@ struct lang_identifier GTY(())
...
@@ -240,9 +240,6 @@ struct lang_identifier GTY(())
#define C_IS_RESERVED_WORD(ID) TREE_LANG_FLAG_5 (ID)
#define C_IS_RESERVED_WORD(ID) TREE_LANG_FLAG_5 (ID)
extern
const
short
rid_to_yy
[
RID_MAX
];
#define C_RID_YYCODE(ID) rid_to_yy[C_RID_CODE (ID)]
#define LANG_IDENTIFIER_CAST(NODE) \
#define LANG_IDENTIFIER_CAST(NODE) \
((struct lang_identifier*)IDENTIFIER_NODE_CHECK (NODE))
((struct lang_identifier*)IDENTIFIER_NODE_CHECK (NODE))
...
@@ -3886,7 +3883,6 @@ extern tree build_cleanup (tree);
...
@@ -3886,7 +3883,6 @@ extern tree build_cleanup (tree);
extern
void
finish_file
(
void
);
extern
void
finish_file
(
void
);
extern
tree
build_expr_from_tree
(
tree
);
extern
tree
build_expr_from_tree
(
tree
);
extern
tree
build_cleanup
(
tree
);
extern
tree
build_cleanup
(
tree
);
extern
void
finish_file
(
void
);
extern
tree
build_expr_from_tree
(
tree
);
extern
tree
build_expr_from_tree
(
tree
);
extern
tree
build_offset_ref_call_from_tree
(
tree
,
tree
);
extern
tree
build_offset_ref_call_from_tree
(
tree
,
tree
);
extern
tree
build_call_from_tree
(
tree
,
tree
,
bool
);
extern
tree
build_call_from_tree
(
tree
,
tree
,
bool
);
...
...
gcc/gcc.c
View file @
e17aafd1
...
@@ -6871,7 +6871,8 @@ next_member:
...
@@ -6871,7 +6871,8 @@ next_member:
else
if
(
p
[
0
]
==
'W'
&&
p
[
1
]
==
'{'
)
else
if
(
p
[
0
]
==
'W'
&&
p
[
1
]
==
'{'
)
p
=
validate_switches
(
p
+
2
);
p
=
validate_switches
(
p
+
2
);
}
}
if
(
*
p
)
p
++
;
else
p
++
;
}
}
if
(
*
p
)
p
++
;
if
(
*
p
)
p
++
;
...
...
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