Commit f06c07c7 by Jason Merrill Committed by Jason Merrill

c-pretty-print.c (pp_c_postfix_expression): Fix thinko.

        * c-pretty-print.c (pp_c_postfix_expression)
        <COMPOUND_LITERAL_EXPR>: Fix thinko.

From-SVN: r72236
parent 63cdad1b
2003-10-08 Jason Merrill <jason@redhat.com>
* c-pretty-print.c (pp_c_postfix_expression)
<COMPOUND_LITERAL_EXPR>: Fix thinko.
2003-10-08 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2003-10-08 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* mklibgcc.in: Don't hide undefined or typeless symbols. * mklibgcc.in: Don't hide undefined or typeless symbols.
......
...@@ -1217,7 +1217,7 @@ pp_c_postfix_expression (c_pretty_printer *pp, tree e) ...@@ -1217,7 +1217,7 @@ pp_c_postfix_expression (c_pretty_printer *pp, tree e)
break; break;
case COMPOUND_LITERAL_EXPR: case COMPOUND_LITERAL_EXPR:
e = DECL_INITIAL (e); e = DECL_INITIAL (COMPOUND_LITERAL_EXPR_DECL (e));
/* Fall through. */ /* Fall through. */
case CONSTRUCTOR: case CONSTRUCTOR:
pp_initializer (pp, e); pp_initializer (pp, e);
......
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