From: Stephen Adams Date: Mon, 7 Aug 1995 16:17:35 +0000 (+0000) Subject: Temorarily disable coerce. It generates quite a lot of code which X-Git-Tag: 20090517-FFI~6058 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=7732d206c9ca71ddce8b82e42167517c430ba8d1;p=mit-scheme.git Temorarily disable coerce. It generates quite a lot of code which slows down all the subsequent phases. It also has an uninvestigated interaction with dataflow as dataflow does not know that teh result of a coerce operation is essentially the original procedure. --- diff --git a/v8/src/compiler/midend/midend.scm b/v8/src/compiler/midend/midend.scm index df8087f72..f8c01d468 100644 --- a/v8/src/compiler/midend/midend.scm +++ b/v8/src/compiler/midend/midend.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: midend.scm,v 1.14 1995/08/06 19:58:53 adams Exp $ +$Id: midend.scm,v 1.15 1995/08/07 16:17:35 adams Exp $ Copyright (c) 1994 Massachusetts Institute of Technology @@ -208,7 +208,7 @@ Example: assconv/top-level ; eliminate SET! and introduce LETREC ; rewriting LOOKUP and SET! cleanup/top-level/1 ; as below - coerce/top-level + ;;coerce/top-level earlyrew/top-level ; rewrite -1+ into -, etc.