This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Bootstrap failure on SH
- From: Kaz Kojima <kkojima at rr dot iij4u dot or dot jp>
- To: gcc at gcc dot gnu dot org
- Date: Wed, 29 Sep 2004 14:09:27 +0900 (JST)
- Subject: Bootstrap failure on SH
Hi,
Mainline fails on SH at
gcc -c -g -O2 -DIN_GCC -DCROSS_COMPILE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -DHAVE_CONFIG_H -I. -I. -I../../ORIG/gcc/gcc -I../../ORIG/gcc/gcc/. -I../../ORIG/gcc/gcc/../include -I../../ORIG/gcc/gcc/../libcpp/include ../../ORIG/gcc/gcc/lcm.c -o lcm.o
../../ORIG/gcc/gcc/lcm.c: In function `optimize_mode_switching':
../../ORIG/gcc/gcc/lcm.c:1028: error: structure has no member named `succ'
../../ORIG/gcc/gcc/lcm.c:1032: error: structure has no member named `pred'
../../ORIG/gcc/gcc/lcm.c:1032: error: structure has no member named `pred_next'
../../ORIG/gcc/gcc/lcm.c:1032: warning: value computed is not used
make[1]: *** [lcm.o] Error 1
It looks that merging from edge-vector-branch causes it:
2004-09-24 Ben Elliston <bje@au.ibm.com>
Steven Bosscher <stevenb@suse.de>
Andrew Pinski <pinskia@physics.uc.edu>
Merge from edge-vector-branch:
* basic-block.h: Include vec.h, errors.h. Instantiate a VEC(edge).
(struct edge_def): Remove pred_next, succ_next members.
(struct basic_block_def): Remove pred, succ members. Add preds
and succs members of type VEC(edge).
Regards,
kaz