This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] gimplify LABELED_BLOCK_EXPR and EXIT_BLOCK_EXPR
On Wed, 18 Jun 2003 13:37:22 -0400, Jason Merrill <jason@redhat.com> wrote:
> In general, if you're going to replace one node with another (or several
> others) I'd just do that directly and let gimplify_expr handle reducing the
> new form further. So don't pass in pre_p, but replace *expr_p with the
> body and the new LABEL_EXPR.
...as you did in your earlier patch. This comment also applies to
java_gimplify_block.
Jason