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
dbc518f0
Commit
dbc518f0
authored
Mar 29, 2008
by
Volker Reichelt
Committed by
Volker Reichelt
Mar 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-parser.c (c_parser_next_token_is_keyword): Simplify.
From-SVN: r133709
parent
fc1ca428
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
gcc/ChangeLog
+4
-0
gcc/c-parser.c
+1
-6
No files found.
gcc/ChangeLog
View file @
dbc518f0
2008-03-28 Volker Reichelt <v.reichelt@netcologne.de>
* c-parser.c (c_parser_next_token_is_keyword): Simplify.
2008-03-28 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/sse.md (*and<mode>3): Pass <MODE>mode instead
...
...
gcc/c-parser.c
View file @
dbc518f0
...
...
@@ -443,12 +443,7 @@ c_parser_next_token_is_not (c_parser *parser, enum cpp_ttype type)
static
inline
bool
c_parser_next_token_is_keyword
(
c_parser
*
parser
,
enum
rid
keyword
)
{
c_token
*
token
;
/* Peek at the next token. */
token
=
c_parser_peek_token
(
parser
);
/* Check to see if it is the indicated keyword. */
return
token
->
keyword
==
keyword
;
return
c_parser_peek_token
(
parser
)
->
keyword
==
keyword
;
}
/* Return true if TOKEN can start a type name,
...
...
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