Commit 2ee028f1 by Marek Polacek Committed by Marek Polacek

Fix bootstrap with -O3.

From-SVN: r195989
parent 1c86bd80
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment