This is the mail archive of the gcc-patches@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: [patch, 4.1.2, 4.2.1, 4.3] Fix a bug in pointer dependency test



Andreas Schwab <schwab@suse.de> wrote on 20/02/2007 23:17:55:

> Ira Rosen <IRAR@il.ibm.com> writes:
>
> > ChangeLog entry:
> >
> >       * tree-ssa-alias.c: Include pointer-set.h
> >
> > The patch:
> >
> > Index: tree-ssa-alias.c
> > ===================================================================
> > --- tree-ssa-alias.c    (revision 122092)
> > +++ tree-ssa-alias.c    (working copy)
> > @@ -47,6 +47,7 @@
> >  #include "vec.h"
> >  #include "bitmap.h"
> >  #include "vecprim.h"
> > +#include "pointer-set.h"
> >
> >  /* Obstack used to hold grouping bitmaps and other temporary bitmaps
used
> > by
> >     aliasing  */
>
> You also need to update the dependencies in the makefile.


Is this O.K.? (I will also have to do this for 4.1).

ChangeLog entry:

      * tree-ssa-alias.c: Include pointer-set.h
      * Makefile.in (tree-ssa-alias.o): Depend on pointer-set.h.

Index: tree-ssa-alias.c
===================================================================
*** tree-ssa-alias.c    (revision 122092)
--- tree-ssa-alias.c    (working copy)
*************** Boston, MA 02110-1301, USA.  */
*** 47,52 ****
--- 47,53 ----
  #include "vec.h"
  #include "bitmap.h"
  #include "vecprim.h"
+ #include "pointer-set.h"

  /* Obstack used to hold grouping bitmaps and other temporary bitmaps used
by
     aliasing  */
Index: Makefile.in
===================================================================
*** Makefile.in (revision 122088)
--- Makefile.in (working copy)
*************** tree-ssa-alias.o : tree-ssa-alias.c $(TR
*** 2037,2043 ****
     $(FUNCTION_H) $(TIMEVAR_H) convert.h $(TM_H) coretypes.h langhooks.h \
     $(TREE_DUMP_H) tree-pass.h $(PARAMS_H) $(BASIC_BLOCK_H)
$(DIAGNOSTIC_H) \
     hard-reg-set.h $(TREE_GIMPLE_H) vec.h tree-ssa-structalias.h \
!    $(IPA_TYPE_ESCAPE_H) vecprim.h
  tree-ssa-reassoc.o : tree-ssa-reassoc.c $(TREE_FLOW_H) $(CONFIG_H) \
     $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) errors.h $(TIMEVAR_H) \
     $(TM_H) coretypes.h $(TREE_DUMP_H) tree-pass.h $(FLAGS_H)
tree-iterator.h\
--- 2037,2043 ----
     $(FUNCTION_H) $(TIMEVAR_H) convert.h $(TM_H) coretypes.h langhooks.h \
     $(TREE_DUMP_H) tree-pass.h $(PARAMS_H) $(BASIC_BLOCK_H)
$(DIAGNOSTIC_H) \
     hard-reg-set.h $(TREE_GIMPLE_H) vec.h tree-ssa-structalias.h \
!    $(IPA_TYPE_ESCAPE_H) vecprim.h pointer-set.h
  tree-ssa-reassoc.o : tree-ssa-reassoc.c $(TREE_FLOW_H) $(CONFIG_H) \
     $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) errors.h $(TIMEVAR_H) \
     $(TM_H) coretypes.h $(TREE_DUMP_H) tree-pass.h $(FLAGS_H)
tree-iterator.h\



>
> Andreas.
>

Thanks,
Ira

> --
> Andreas Schwab, SuSE Labs, schwab@suse.de
> SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
> PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
> "And now for something completely different."


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