2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-24 20:42:10 +08:00

Fix bootstrap with -O3.

From-SVN: r195989
This commit is contained in:
Marek Polacek 2013-02-12 20:07:04 +00:00 committed by Marek Polacek
parent 1c86bd80a3
commit 2ee028f1be
2 changed files with 7 additions and 1 deletions

@ -1,3 +1,9 @@
2013-02-12 Marek Polacek <polacek@redhat.com>
PR c/44938
* c-parser.c (c_parser_postfix_expression_after_primary): Initialize
origtypes to NULL.
2013-01-24 Jakub Jelinek <jakub@redhat.com>
PR c/56078

@ -6864,7 +6864,7 @@ c_parser_postfix_expression_after_primary (c_parser *parser,
tree sizeof_arg[3];
unsigned int i;
vec<tree, va_gc> *exprlist;
vec<tree, va_gc> *origtypes;
vec<tree, va_gc> *origtypes = NULL;
while (true)
{
location_t op_loc = c_parser_peek_token (parser)->location;