Rearranged files in midend.
authorStephen Adams <edu/mit/csail/zurich/adams>
Tue, 5 Sep 1995 18:46:39 +0000 (18:46 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Tue, 5 Sep 1995 18:46:39 +0000 (18:46 +0000)
v8/src/compiler/machines/spectrum/compiler.pkg

index 512b584ea03e4c1d271b871998f1f680bc9b6625..3d7792c33c91a0cd3c067188503e5b11e9c35994 100644 (file)
@@ -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"