This is the mail archive of the gcc@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]

Re: Build problem with gcc 4.3.0 20070108 (experimental)


> >`/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  <jh@suse.cz>
+ 
+ 	* tree-vectorizer.c (gate_increase_alignment): Fix return type.
+ 
  2007-01-08  Richard Guenther  <rguenther@suse.de>
  
  	* 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;


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