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]

configure.in patch for enable-haifa



loop.c and unroll.c no longer have any references to HAIFA
and don't require deleting when enable-haifa is selected.

Michael.


Sun Jan 31 12:25:50 1999  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>

	* configure.in: Don't remove loop.o and unroll.o when
	enable-haifa is selected.

Index: configure.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/configure.in,v
retrieving revision 1.201
diff -c -3 -p -r1.201 configure.in
*** configure.in	1999/01/27 01:42:03	1.201
--- configure.in	1999/01/30 23:00:51
*************** AC_SUBST(sched_prefix)
*** 4130,4136 ****
  AC_SUBST(sched_cflags)
  if test x$enable_haifa != x; then
      # Explicitly remove files that need to be recompiled for the Haifa scheduler.
!     for x in genattrtab.o toplev.o loop.o unroll.o *sched.o; do
  	if test -f $x; then
  	    echo "Removing $x"
  	    rm -f $x
--- 4130,4136 ----
  AC_SUBST(sched_cflags)
  if test x$enable_haifa != x; then
      # Explicitly remove files that need to be recompiled for the Haifa scheduler.
!     for x in genattrtab.o toplev.o *sched.o; do
  	if test -f $x; then
  	    echo "Removing $x"
  	    rm -f $x


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