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
56c2b525
Commit
56c2b525
authored
23 years ago
by
Neil Booth
Committed by
Neil Booth
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix-header.c (read_scan_file): Update.
From-SVN: r47055
parent
a9915c78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/fix-header.c
+4
-2
No files found.
gcc/ChangeLog
View file @
56c2b525
2001
-
11
-
15
Neil
Booth
<
neil
@daikokuya
.
demon
.
co
.
uk
>
*
fix
-
header
.
c
(
read_scan_file
)
:
Update
.
Thu
Nov
15
08
:
36
:
39
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
toplev
.
c
(
toplev_main
)
:
Don
'
t
start
timing
until
after
...
...
This diff is collapsed.
Click to expand it.
gcc/fix-header.c
View file @
56c2b525
...
...
@@ -621,7 +621,7 @@ read_scan_file (in_fname, argc, argv)
obstack_init
(
&
scan_file_obstack
);
scan_in
=
cpp_create_reader
(
NULL
,
CLK_GNUC89
);
scan_in
=
cpp_create_reader
(
CLK_GNUC89
);
cb
=
cpp_get_callbacks
(
scan_in
);
cb
->
file_change
=
cb_file_change
;
...
...
@@ -638,9 +638,11 @@ read_scan_file (in_fname, argc, argv)
if
(
CPP_FATAL_ERRORS
(
scan_in
))
exit
(
FATAL_EXIT_CODE
);
if
(
!
cpp_
start_read
(
scan_in
,
in_fname
))
if
(
!
cpp_
read_main_file
(
scan_in
,
in_fname
,
NULL
))
exit
(
FATAL_EXIT_CODE
);
cpp_finish_options
(
scan_in
);
/* We are scanning a system header, so mark it as such. */
cpp_make_system_header
(
scan_in
,
1
,
0
);
...
...
This diff is collapsed.
Click to expand it.
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