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
01fba8d9
Commit
01fba8d9
authored
Sep 15, 1999
by
Richard Henderson
Committed by
Richard Henderson
Sep 15, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lex.c (mark_impl_file_chain): Follow the next chain.
From-SVN: r29442
parent
1a4450c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/lex.c
+5
-2
No files found.
gcc/cp/ChangeLog
View file @
01fba8d9
1999-09-15 Richard Henderson <rth@cygnus.com>
* lex.c (mark_impl_file_chain): Follow the next chain.
1999-09-15 Mark Mitchell <mark@codesourcery.com>
* decl2.c (build_expr_from_tree): Handle VA_ARG_EXPR.
...
...
gcc/cp/lex.c
View file @
01fba8d9
...
...
@@ -1129,8 +1129,11 @@ mark_impl_file_chain (arg)
struct
impl_files
*
ifs
;
ifs
=
*
(
struct
impl_files
**
)
arg
;
if
(
ifs
)
ggc_mark_string
(
ifs
->
filename
);
while
(
ifs
)
{
ggc_mark_string
(
ifs
->
filename
);
ifs
=
ifs
->
next
;
}
}
/* Helper function to load global variables with interface
...
...
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