This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Bootstrap failure on SH
Ben Elliston <bje@au.ibm.com> wrote:
> Would you please try the following patch?
Thanks! I've just tried it.
> - post_entry = split_edge (ENTRY_BLOCK_PTR->succ);
> + edge_iterator ei;
> + post_entry = split_edge (EDGE_SUCC (ENTRY_BLOCK_PTR->succs, 0));
It looks the last line has a typo. Removing "->succs", the patch
gets rid of the failure when compiling lcm.c for SH and seems fine.
A build for x86 x sh-linux is ok and a native sh4-linux build now goes
in stage2.
Regards,
kaz