2005-08-31 Andrew Pinski <pinskia@physics.uc.edu>
PR objc/23381
* objc-act.c (next_sjlj_build_try_catch_finally): Set
TREE_SIDE_EFFECTS on catch_seq after building it.
From-SVN: r103658
+2005-08-31 Andrew Pinski <pinskia@physics.uc.edu>
+
+ PR objc/23381
+ * objc-act.c (next_sjlj_build_try_catch_finally): Set
+ TREE_SIDE_EFFECTS on catch_seq after building it.
+
2005-08-09 Andrew Pinski <pinskia@physics.uc.edu>
part of PR objc/21992
{
tree caught_decl = objc_build_exc_ptr ();
catch_seq = build_stmt (BIND_EXPR, caught_decl, NULL, NULL);
+ TREE_SIDE_EFFECTS (catch_seq) = 1;
t = next_sjlj_build_exc_extract (caught_decl);
append_to_statement_list (t, &BIND_EXPR_BODY (catch_seq));