diff options
author | obrien <obrien@FreeBSD.org> | 1999-04-06 20:08:01 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-04-06 20:08:01 +0000 |
commit | 4413bdb033874d0ca3bc3c428c5e6cc15c0befcf (patch) | |
tree | 02dc42f6281f3feee0675a87054169b6bfc42b97 | |
parent | 23908fa2e8fa0df30b1023cfed894f47a17cf936 (diff) | |
download | FreeBSD-src-4413bdb033874d0ca3bc3c428c5e6cc15c0befcf.zip FreeBSD-src-4413bdb033874d0ca3bc3c428c5e6cc15c0befcf.tar.gz |
Use Haifa scheduler on the Alpha.
-rw-r--r-- | gnu/usr.bin/cc/cc_int/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index a00b9b6..d141948 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.17 1999/03/05 04:55:03 obrien Exp $ +# $Id: Makefile,v 1.16 1999/04/04 16:36:34 obrien Exp $ # .include "../Makefile.inc" @@ -14,11 +14,16 @@ SRCS= c-common.c c-pragma.c \ integrate.c jump.c local-alloc.c loop.c obstack.c optabs.c \ print-rtl.c print-tree.c real.c recog.c reg-stack.c regclass.c \ reload.c reload1.c reorg.c rtl.c rtlanal.c \ - sched.c sdbout.c stmt.c stor-layout.c stupid.c \ + sdbout.c stmt.c stor-layout.c stupid.c \ toplev.c tree.c unroll.c varasm.c version.c xcoffout.c \ alias.c bitmap.c dwarf2out.c dyn-string.c except.c \ gcse.c genrtl.c profile.c regmove.c varray.c \ ${OUT_FILE} +.if defined(USE_EGCS_HAIFA) && ${USE_EGCS_HAIFA} == 1 +SRCS+= haifa-sched.c +.else +SRCS+= sched.c +.endif CFLAGS+= -DTARGET_NAME=\"${MACHINE_ARCH}-unknown-freebsd\" |