diff options
author | Ben Elliston <bje@au.ibm.com> | 2008-12-04 22:44:02 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2008-12-05 09:44:02 +1100 |
commit | 922f2908047eb7905cc28ab58a24486806e45221 (patch) | |
tree | 836ad975acf15d2121f2ed698aa37e512b5c3339 /gcc/c-parser.c | |
parent | f5f8d79dec035521d9c869e65b37636d934f66a3 (diff) | |
download | gcc-922f2908047eb7905cc28ab58a24486806e45221.zip gcc-922f2908047eb7905cc28ab58a24486806e45221.tar.gz gcc-922f2908047eb7905cc28ab58a24486806e45221.tar.bz2 |
c-parser.c (c_parser_enum_specifier): Initialise ident_loc and comma_loc.
* c-parser.c (c_parser_enum_specifier): Initialise ident_loc and
comma_loc.
(c_parser_initelt): Initialise des_loc and ellipsis_loc.
From-SVN: r142448
Diffstat (limited to 'gcc/c-parser.c')
-rw-r--r-- | gcc/c-parser.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-parser.c b/gcc/c-parser.c index 0fc579b..6bd7f04 100644 --- a/gcc/c-parser.c +++ b/gcc/c-parser.c @@ -1605,7 +1605,7 @@ c_parser_enum_specifier (c_parser *parser) struct c_typespec ret; tree attrs; tree ident = NULL_TREE; - location_t ident_loc; + location_t ident_loc = UNKNOWN_LOCATION; /* Quiet warning. */ gcc_assert (c_parser_next_token_is_keyword (parser, RID_ENUM)); c_parser_consume_token (parser); attrs = c_parser_attributes (parser); @@ -1634,7 +1634,7 @@ c_parser_enum_specifier (c_parser *parser) tree enum_decl; bool seen_comma; c_token *token; - location_t comma_loc; + location_t comma_loc = UNKNOWN_LOCATION; /* Quiet warning. */ location_t value_loc; if (c_parser_next_token_is_not (parser, CPP_NAME)) { @@ -3065,7 +3065,7 @@ c_parser_initelt (c_parser *parser) has been a single array designator and 2 otherwise. */ int des_seen = 0; /* Location of a designator. */ - location_t des_loc; + location_t des_loc = UNKNOWN_LOCATION; /* Quiet warning. */ while (c_parser_next_token_is (parser, CPP_OPEN_SQUARE) || c_parser_next_token_is (parser, CPP_DOT)) { @@ -3097,7 +3097,7 @@ c_parser_initelt (c_parser *parser) else { tree first, second; - location_t ellipsis_loc; + location_t ellipsis_loc = UNKNOWN_LOCATION; /* Quiet warning. */ /* ??? Following the old parser, [ objc-receiver objc-message-args ] is accepted as an initializer, being distinguished from a designator by what follows |