Commit 83bbca3b by Jason Merrill

tree.c (bot_manip): Check TREE_CONSTANT rather than !TREE_SIDE_EFFECTS.

        * tree.c (bot_manip): Check TREE_CONSTANT rather than
        !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
        build_target_expr_with_type for the non-AGGR_INIT_EXPR case.

From-SVN: r36081
parent 495d26d6
// Bug: the SAVE_EXPR in the new expression remembers that it's in g(),
// causing the compiler to crash in h().
// Build don't link:
struct A {
A ();
};
void f (A* = new A);
void g ()
{
f ();
}
void h ()
{
f ();
}
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