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
590e1987
Commit
590e1987
authored
Jul 01, 2002
by
Neil Booth
Committed by
Neil Booth
Jul 01, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cppmacro.c: Forgotten commit.
From-SVN: r55134
parent
8bf3ccbb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+1
-1
gcc/cppmacro.c
+6
-2
No files found.
gcc/ChangeLog
View file @
590e1987
...
...
@@ -97,7 +97,7 @@ Fri Jun 28 17:22:37 2002 Denis Chertykov <denisc@overta.ru>
PR preprocessor/7150
* cppmain.c (scan_translation_unit_trad): Simplify.
* cpp
lib
.c (cpp_scan_nooutput): Handle traditional case.
* cpp
macro
.c (cpp_scan_nooutput): Handle traditional case.
2002-06-29 Neil Booth <neil@daikokuya.demon.co.uk>
...
...
gcc/cppmacro.c
View file @
590e1987
...
...
@@ -1136,8 +1136,12 @@ cpp_scan_nooutput (pfile)
transparently continuing with the including file. */
pfile
->
buffer
->
return_at_eof
=
true
;
while
(
cpp_get_token
(
pfile
)
->
type
!=
CPP_EOF
)
;
if
(
CPP_OPTION
(
pfile
,
traditional
))
while
(
_cpp_read_logical_line_trad
(
pfile
))
;
else
while
(
cpp_get_token
(
pfile
)
->
type
!=
CPP_EOF
)
;
}
/* Step back one (or more) tokens. Can only step mack more than 1 if
...
...
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