This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/49615] [4.6 Regression] internal compiler error: verify_stmts failed / LHS in noreturn call with pointer-to-never-returning-member
- From: "rguenther at suse dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 4 Jul 2011 10:38:21 +0000
- Subject: [Bug tree-optimization/49615] [4.6 Regression] internal compiler error: verify_stmts failed / LHS in noreturn call with pointer-to-never-returning-member
- Auto-submitted: auto-generated
- References: <bug-49615-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49615
--- Comment #5 from rguenther at suse dot de <rguenther at suse dot de> 2011-07-04 10:37:11 UTC ---
On Mon, 4 Jul 2011, hubicka at ucw dot cz wrote:
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49615
>
> --- Comment #4 from Jan Hubicka <hubicka at ucw dot cz> 2011-07-04 10:05:10 UTC ---
> split_bbs_on_noreturn_calls is supposed to handle this scenario...
Yeah, but it contains a typo ...
|| bb->index >= n_basic_blocks
should be
|| bb->index >= last_basic_block
...
I have a fix.