> >`/rb.exphome/tools/gcc/obj-i686-pc-linux-gnu/gcc'
> >make[2]: *** [all-stage2-gcc] Error 2
> >make[2]: Leaving directory `/rb.exphome/tools/gcc/obj-i686-pc-linux-gnu'
> >make[1]: *** [stage2-bubble] Error 2
> >make[1]: Leaving directory `/rb.exphome/tools/gcc/obj-i686-pc-linux-gnu'
> >make: *** [bootstrap] Error 2
>
> That's honza's patch - but bootstrap doesn't abort for me at that point.
Hi,
I've comited the obvious fix. Sorry for that. I wonder why the
bootstrap doesn't fail on all targets?
Honza
Index: ChangeLog
===================================================================
*** ChangeLog (revision 120588)
--- ChangeLog (working copy)
***************
*** 1,3 ****
--- 1,7 ----
+ 2007-01-08 Jan Hubicka <[EMAIL PROTECTED]>
+
+ * tree-vectorizer.c (gate_increase_alignment): Fix return type.
+
2007-01-08 Richard Guenther <[EMAIL PROTECTED]>
* tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Use type
Index: tree-vectorizer.c
===================================================================
*** tree-vectorizer.c (revision 120588)
--- tree-vectorizer.c (working copy)
*************** increase_alignment (void)
*** 2255,2261 ****
return 0;
}
! static int
gate_increase_alignment (void)
{
return flag_section_anchors && flag_tree_vectorize;
--- 2255,2261 ----
return 0;
}
! static bool
gate_increase_alignment (void)
{
return flag_section_anchors && flag_tree_vectorize;