Commit 992d1248 by Doug Evans Committed by Doug Evans

configure.in (haifa configury): Fix typo.

	* configure.in (haifa configury): Fix typo.
	* configure: Regenerate.

From-SVN: r14783
parent 7bb6fbd1
Wed Aug 13 01:03:37 1997 Doug Evans <dje@canuck.cygnus.com>
* configure.in (haifa configury): Fix typo.
* configure: Regenerate.
Tue Aug 12 10:20:36 1997 Jeffrey A Law (law@cygnus.com) Tue Aug 12 10:20:36 1997 Jeffrey A Law (law@cygnus.com)
* version.c: Bump version to "gcc-3.0.0 970802 experimental". * version.c: Bump version to "gcc-3.0.0 970802 experimental".
......
...@@ -4219,13 +4219,13 @@ if [ -f ../gas/Makefile ]; then ...@@ -4219,13 +4219,13 @@ if [ -f ../gas/Makefile ]; then
fi fi
# If we have ld in the build tree, make a link to it. # If we have ld in the build tree, make a link to it.
#if [ -f ../ld/Makefile ]; then if [ -f ../ld/Makefile ]; then
# if [ x$use_collect2 = x ]; then # if [[ x$use_collect2 = x ]]; then
# rm -f ld; $symbolic_link ../ld/ld.new ld 2>/dev/null # rm -f ld; $symbolic_link ../ld/ld.new ld 2>/dev/null
# else # else
# rm -f collect-ld; $symbolic_link ../ld/ld.new collect-ld 2>/dev/null rm -f collect-ld; $symbolic_link ../ld/ld.new collect-ld 2>/dev/null
# fi # fi
#fi fi
# Figure out what language subdirectories are present. # Figure out what language subdirectories are present.
subdirs= subdirs=
...@@ -4364,14 +4364,14 @@ fi ...@@ -4364,14 +4364,14 @@ fi
# Override SCHED_OBJ and SCHED_CFLAGS to enable the Haifa scheduler. # Override SCHED_OBJ and SCHED_CFLAGS to enable the Haifa scheduler.
sched_prefix= sched_prefix=
sched_cflags= sched_cflags=
if [[ x$enable_haifa = xyes ]]; then if [ x$enable_haifa = xyes ]; then
echo "Using the Haifa scheduler." echo "Using the Haifa scheduler."
sched_prefix=haifa- sched_prefix=haifa-
sched_cflags=-DHAIFA sched_cflags=-DHAIFA
fi fi
if [[ x$enable_haifa != x ]]; then if [ x$enable_haifa != x ]; then
# Explicitly remove files that need to be recompiled for the Haifa scheduler. # 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 for x in genattrtab.o toplev.o loop.o unroll.o *sched.o; do
if [ -f $x ]; then if [ -f $x ]; then
...@@ -4622,9 +4622,9 @@ s%@CC@%$CC%g ...@@ -4622,9 +4622,9 @@ s%@CC@%$CC%g
s%@SET_MAKE@%$SET_MAKE%g s%@SET_MAKE@%$SET_MAKE%g
s%@CPP@%$CPP%g s%@CPP@%$CPP%g
s%@manext@%$manext%g s%@manext@%$manext%g
s%@objext@%$objext%g
s%@sched_prefix@%$sched_prefix%g s%@sched_prefix@%$sched_prefix%g
s%@sched_cflags@%$sched_cflags%g s%@sched_cflags@%$sched_cflags%g
s%@objext@%$objext%g
s%@subdirs@%$subdirs%g s%@subdirs@%$subdirs%g
s%@all_languages@%$all_languages%g s%@all_languages@%$all_languages%g
s%@all_boot_languages@%$all_boot_languages%g s%@all_boot_languages@%$all_boot_languages%g
......
...@@ -3040,7 +3040,7 @@ AC_SUBST(sched_cflags) ...@@ -3040,7 +3040,7 @@ AC_SUBST(sched_cflags)
if [[ x$enable_haifa != x ]]; then if [[ x$enable_haifa != x ]]; then
# Explicitly remove files that need to be recompiled for the Haifa scheduler. # 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 for x in genattrtab.o toplev.o loop.o unroll.o *sched.o; do
if [ -f $x ]; then if [[ -f $x ]]; then
echo "Removing $x" echo "Removing $x"
rm -f $x rm -f $x
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment