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
3c56dbcf
Commit
3c56dbcf
authored
Jul 27, 1999
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try again
From-SVN: r28291
parent
0068735b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gcc/cp/input.c
+5
-4
No files found.
gcc/cp/input.c
View file @
3c56dbcf
...
...
@@ -124,13 +124,14 @@ feed_input (str, len, file, line)
#if USE_CPPLIB
if
(
yy_lim
>
yy_cur
)
/* If we've started reading the next token, we're hosed. */
/* If we've started reading the next token, we're hosed. The
token_getch stuff is supposed to prevent this from happening. */
my_friendly_abort
(
990710
);
cpp_push_buffer
(
&
parse_in
,
str
,
len
);
CPP_BUFFER
(
&
parse_in
)
->
manual_pop
=
1
;
CPP_BUFFER
(
&
parse_in
)
->
nominal_fname
=
CPP_BUFFER
(
&
parse_in
)
->
fname
=
file
;
CPP_BUFFER
(
&
parse_in
)
->
lineno
=
line
;
CPP_BUFFER
(
&
parse_in
)
->
lineno
=
parse_in
.
lineno
=
line
;
#else
inp
->
str
=
str
;
inp
->
length
=
len
;
...
...
@@ -141,12 +142,12 @@ feed_input (str, len, file, line)
putback
.
buffer
=
NULL
;
putback
.
buffer_size
=
0
;
putback
.
index
=
-
1
;
lineno
=
line
;
input_filename
=
file
;
#endif
inp
->
next
=
input
;
inp
->
input
=
save_pending_input
();
input
=
inp
;
lineno
=
line
;
input_filename
=
file
;
}
extern
int
end_of_file
;
...
...
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