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
7b43d104
Commit
7b43d104
authored
Apr 03, 2003
by
Neil Booth
Committed by
Neil Booth
Apr 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix-header.c (read_scan_file): Defer switch processing.
From-SVN: r65216
parent
d24ecd21
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
gcc/ChangeLog
+4
-0
gcc/fix-header.c
+5
-4
No files found.
gcc/ChangeLog
View file @
7b43d104
2003-04-03 Neil Booth <neil@daikokuya.co.uk>
* fix-header.c (read_scan_file): Defer switch processing.
2003-04-03 Matt Austern <austern@apple.com>
* cpppch.c (reset_ht): Remove.
...
...
gcc/fix-header.c
View file @
7b43d104
...
...
@@ -635,6 +635,11 @@ read_scan_file (in_fname, argc, argv)
if
(
!
cpp_read_main_file
(
scan_in
,
in_fname
))
exit
(
FATAL_EXIT_CODE
);
cpp_change_file
(
scan_in
,
LC_RENAME
,
"<built-in>"
);
cpp_init_builtins
(
scan_in
);
cpp_change_file
(
scan_in
,
LC_RENAME
,
in_fname
);
/* Process switches after builtins so -D can override them. */
for
(
i
=
0
;
i
<
argc
;
i
+=
strings_processed
)
{
strings_processed
=
0
;
...
...
@@ -675,10 +680,6 @@ read_scan_file (in_fname, argc, argv)
true
/* stdinc */
,
false
/* cxx_stdinc */
,
false
/* verbose */
);
cpp_change_file
(
scan_in
,
LC_RENAME
,
"<built-in>"
);
cpp_init_builtins
(
scan_in
);
cpp_change_file
(
scan_in
,
LC_RENAME
,
in_fname
);
/* We are scanning a system header, so mark it as such. */
cpp_make_system_header
(
scan_in
,
1
,
0
);
...
...
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