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
6d83a977
Commit
6d83a977
authored
Mar 29, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Mar 29, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lex.c (yynextch): Delete dead function.
From-SVN: r18900
parent
994ac65b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
18 deletions
+2
-18
gcc/cp/ChangeLog
+2
-0
gcc/cp/lex.c
+0
-18
No files found.
gcc/cp/ChangeLog
View file @
6d83a977
Sun Mar 29 00:47:32 1998 Jeffrey A Law (law@cygnus.com)
Sun Mar 29 00:47:32 1998 Jeffrey A Law (law@cygnus.com)
* lex.c (yynextch): Delete dead function.
* expr.c (tree_extract_aggr_init): #if 0 out.
* expr.c (tree_extract_aggr_init): #if 0 out.
* except.c (do_unwind): Delete dead function.
* except.c (do_unwind): Delete dead function.
...
...
gcc/cp/lex.c
View file @
6d83a977
...
@@ -97,7 +97,6 @@ extern void compiler_error PROTO((char *, HOST_WIDE_INT,
...
@@ -97,7 +97,6 @@ extern void compiler_error PROTO((char *, HOST_WIDE_INT,
static
tree
get_time_identifier
PROTO
((
char
*
));
static
tree
get_time_identifier
PROTO
((
char
*
));
static
int
check_newline
PROTO
((
void
));
static
int
check_newline
PROTO
((
void
));
static
int
skip_white_space
PROTO
((
int
));
static
int
skip_white_space
PROTO
((
int
));
static
int
yynextch
PROTO
((
void
));
static
void
finish_defarg
PROTO
((
void
));
static
void
finish_defarg
PROTO
((
void
));
static
int
my_get_run_time
PROTO
((
void
));
static
int
my_get_run_time
PROTO
((
void
));
static
int
get_last_nonwhite_on_line
PROTO
((
void
));
static
int
get_last_nonwhite_on_line
PROTO
((
void
));
...
@@ -1394,23 +1393,6 @@ restore_pending_input (p)
...
@@ -1394,23 +1393,6 @@ restore_pending_input (p)
free
(
p
);
free
(
p
);
}
}
/* Return next non-whitespace input character, which may come
from `finput', or from `nextchar'. */
static
int
yynextch
()
{
int
c
;
if
(
nextchar
>=
0
)
{
c
=
nextchar
;
nextchar
=
-
1
;
}
else
c
=
getch
();
return
skip_white_space
(
c
);
}
/* Unget character CH from the input stream.
/* Unget character CH from the input stream.
If RESCAN is non-zero, then we want to `see' this
If RESCAN is non-zero, then we want to `see' this
character as the next input token. */
character as the next input token. */
...
...
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