mirror of git://gcc.gnu.org/git/gcc.git
parser.c (cp_lexer_next_token_is_keyword): Simplify.
* parser.c (cp_lexer_next_token_is_keyword): Simplify. * parser.c (clear_decl_specs): Remove prototype. * parser.c (cp_parser_expression_fn): Remove. From-SVN: r110039
This commit is contained in:
parent
2b6dd222bb
commit
cba43cb6ba
|
|
@ -1,5 +1,11 @@
|
|||
2006-01-20 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
|
||||
|
||||
* parser.c (cp_lexer_next_token_is_keyword): Simplify.
|
||||
|
||||
* parser.c (clear_decl_specs): Remove prototype.
|
||||
|
||||
* parser.c (cp_parser_expression_fn): Remove.
|
||||
|
||||
* call.c (add_builtin_candidates): Remove superfluous return.
|
||||
* name-lookup.c (do_toplevel_using_decl): Likewise.
|
||||
* parser.c (cp_parser_type_specifier_seq): Likewise.
|
||||
|
|
|
|||
|
|
@ -497,12 +497,7 @@ cp_lexer_next_token_is_not (cp_lexer* lexer, enum cpp_ttype type)
|
|||
static inline bool
|
||||
cp_lexer_next_token_is_keyword (cp_lexer* lexer, enum rid keyword)
|
||||
{
|
||||
cp_token *token;
|
||||
|
||||
/* Peek at the next token. */
|
||||
token = cp_lexer_peek_token (lexer);
|
||||
/* Check to see if it is the indicated keyword. */
|
||||
return token->keyword == keyword;
|
||||
return cp_lexer_peek_token (lexer)->keyword == keyword;
|
||||
}
|
||||
|
||||
/* Return a pointer to the Nth token in the token stream. If N is 1,
|
||||
|
|
@ -757,9 +752,6 @@ cp_token_cache_new (cp_token *first, cp_token *last)
|
|||
|
||||
/* Decl-specifiers. */
|
||||
|
||||
static void clear_decl_specs
|
||||
(cp_decl_specifier_seq *);
|
||||
|
||||
/* Set *DECL_SPECS to represent an empty decl-specifier-seq. */
|
||||
|
||||
static void
|
||||
|
|
@ -1352,9 +1344,6 @@ typedef struct cp_parser GTY(())
|
|||
unsigned num_template_parameter_lists;
|
||||
} cp_parser;
|
||||
|
||||
/* The type of a function that parses some kind of expression. */
|
||||
typedef tree (*cp_parser_expression_fn) (cp_parser *);
|
||||
|
||||
/* Prototypes. */
|
||||
|
||||
/* Constructors and destructors. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue