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
21c38ecb
Commit
21c38ecb
authored
Aug 12, 2001
by
Neil Booth
Committed by
Neil Booth
Aug 12, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix-header.c (cb_file_change): Update prototype.
From-SVN: r44824
parent
fe91fda8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+4
-0
gcc/fix-header.c
+4
-4
No files found.
gcc/ChangeLog
View file @
21c38ecb
2001
-
08
-
12
Neil
Booth
<
neil
@daikokuya
.
demon
.
co
.
uk
>
*
fix
-
header
.
c
(
cb_file_change
)
:
Update
prototype
.
2001
-
08
-
11
Zack
Weinberg
<
zackw
@panix
.
com
>
*
toplev
.
c
(
set_float_handler
)
:
Make
static
.
...
...
gcc/fix-header.c
View file @
21c38ecb
...
...
@@ -199,7 +199,7 @@ static int inf_skip_spaces PARAMS ((int));
static
int
inf_read_upto
PARAMS
((
sstring
*
,
int
));
static
int
inf_scan_ident
PARAMS
((
sstring
*
,
int
));
static
int
check_protection
PARAMS
((
int
*
,
int
*
));
static
void
cb_file_change
PARAMS
((
cpp_reader
*
,
const
cpp_file_change
*
));
static
void
cb_file_change
PARAMS
((
cpp_reader
*
,
const
struct
line_map
*
));
static
void
add_symbols
(
flags
,
names
)
...
...
@@ -598,12 +598,12 @@ check_macro_names (pfile, names)
}
static
void
cb_file_change
(
pfile
,
fc
)
cb_file_change
(
pfile
,
map
)
cpp_reader
*
pfile
ATTRIBUTE_UNUSED
;
const
cpp_file_change
*
fc
;
const
struct
line_map
*
map
;
{
/* Just keep track of current file name. */
cur_file
=
fc
->
map
->
to_file
;
cur_file
=
map
->
to_file
;
}
static
void
...
...
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