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
f7d151fb
Commit
f7d151fb
authored
Apr 19, 2003
by
Neil Booth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* skip_whitespace: Rearrange to avoid stage1 ICE.
From-SVN: r65809
parent
26aea073
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
gcc/cpplex.c
+5
-8
No files found.
gcc/cpplex.c
View file @
f7d151fb
...
...
@@ -334,7 +334,7 @@ skip_whitespace (pfile, c)
cppchar_t
c
;
{
cpp_buffer
*
buffer
=
pfile
->
buffer
;
unsigned
int
warned
=
0
;
bool
saw_NUL
=
false
;
do
{
...
...
@@ -343,13 +343,7 @@ skip_whitespace (pfile, c)
;
/* Just \f \v or \0 left. */
else
if
(
c
==
'\0'
)
{
if
(
!
warned
)
{
cpp_error
(
pfile
,
DL_WARNING
,
"null character(s) ignored"
);
warned
=
1
;
}
}
saw_NUL
=
true
;
else
if
(
pfile
->
state
.
in_directive
&&
CPP_PEDANTIC
(
pfile
))
cpp_error_with_line
(
pfile
,
DL_PEDWARN
,
pfile
->
line
,
CPP_BUF_COL
(
buffer
),
...
...
@@ -361,6 +355,9 @@ skip_whitespace (pfile, c)
/* We only want non-vertical space, i.e. ' ' \t \f \v \0. */
while
(
is_nvspace
(
c
));
if
(
saw_NUL
)
cpp_error
(
pfile
,
DL_WARNING
,
"null character(s) ignored"
);
buffer
->
cur
--
;
}
...
...
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