Commit 570c4247 by Jan Hubicka Committed by Jan Hubicka

re PR middle-end/39659 (ICE building libstdc++v3 functexcept.cc)


	PR middle-end/39659
	* except.c (remove_unreachable_regions): Propagate may_contain_throw
	flag.

From-SVN: r145589
parent a460d7a1
2009-04-06 Jan Hubicka <jh@suse.cz>
PR middle-end/39659
* except.c (remove_unreachable_regions): Propagate may_contain_throw
flag.
2009-04-06 Andrew Stubbs <ams@codesourcery.com> 2009-04-06 Andrew Stubbs <ams@codesourcery.com>
* config/sh/lib1funcs.asm (ic_invalidate): Move ICBI out of the * config/sh/lib1funcs.asm (ic_invalidate): Move ICBI out of the
......
...@@ -853,6 +853,7 @@ remove_unreachable_regions (sbitmap reachable, sbitmap contains_stmt) ...@@ -853,6 +853,7 @@ remove_unreachable_regions (sbitmap reachable, sbitmap contains_stmt)
r->region_number, r->region_number,
first_must_not_throw->region_number); first_must_not_throw->region_number);
remove_eh_handler_and_replace (r, first_must_not_throw); remove_eh_handler_and_replace (r, first_must_not_throw);
first_must_not_throw->may_contain_throw |= r->may_contain_throw;
} }
else else
bring_to_root (r); bring_to_root (r);
......
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