This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/49615] [4.6 Regression] internal compiler error: verify_stmts failed / LHS in noreturn call with pointer-to-never-returning-member


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]