From: Stephen Adams Date: Tue, 5 Sep 1995 18:46:39 +0000 (+0000) Subject: Rearranged files in midend. X-Git-Tag: 20090517-FFI~5989 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ba4dcec88fe38e65015bc8476132e796cb6d6084;p=mit-scheme.git Rearranged files in midend. --- diff --git a/v8/src/compiler/machines/spectrum/compiler.pkg b/v8/src/compiler/machines/spectrum/compiler.pkg index 512b584ea..3d7792c33 100644 --- a/v8/src/compiler/machines/spectrum/compiler.pkg +++ b/v8/src/compiler/machines/spectrum/compiler.pkg @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: compiler.pkg,v 1.13 1995/08/08 16:21:25 adams Exp $ +$Id: compiler.pkg,v 1.14 1995/09/05 18:46:39 adams Exp $ Copyright (c) 1988-1995 Massachusetts Institute of Technology @@ -41,6 +41,7 @@ MIT in each case. |# "base/object" ;tagged object support "base/enumer" ;enumerations "base/sets" ;set abstraction + "base/fasthash" ;eq-hash tables "base/mvalue" ;multiple-value support "base/scode" ;SCode abstraction "machines/spectrum/machin" ;machine dependent stuff @@ -533,9 +534,13 @@ MIT in each case. |# (define-package (compiler midend) (files "midend/graph" "midend/synutl" + "midend/kmp" "midend/midend" "midend/utils" + "midend/effects" "midend/fakeprim" + "midend/types" + "midend/typedb" ; must go before typerew "midend/dbgstr" "midend/dbgred" "midend/inlate" @@ -545,6 +550,7 @@ MIT in each case. |# "midend/assconv" "midend/cleanup" "midend/earlyrew" + "midend/typerew" "midend/lamlift" "midend/closconv" ;; "midend/staticfy" ; broken, for now @@ -552,7 +558,7 @@ MIT in each case. |# "midend/simplify" "midend/cpsconv" "midend/laterew" - "midend/compat" ; compatibility with current compiler + "midend/compat" "midend/stackopt" "midend/indexify" "midend/rtlgen"