remove `type' and `value' fields from <ghil-var>
authorAndy Wingo <wingo@pobox.com>
Mon, 29 Sep 2008 20:52:36 +0000 (22:52 +0200)
committerAndy Wingo <wingo@pobox.com>
Mon, 29 Sep 2008 20:52:36 +0000 (22:52 +0200)
* module/system/il/ghil.scm (<ghil-var>): Remove `type' and `value'
  fields, as they were not used.

module/system/il/ghil.scm

index 92abfc3..5d6e67a 100644 (file)
@@ -85,8 +85,7 @@
    ghil-values*-env ghil-values*-loc ghil-values*-values
 
    <ghil-var> make-ghil-var ghil-var?
-   ghil-var-env ghil-var-name ghil-var-kind ghil-var-type ghil-var-value
-   ghil-var-index
+   ghil-var-env ghil-var-name ghil-var-kind ghil-var-index
 
    <ghil-toplevel-env> make-ghil-toplevel-env ghil-toplevel-env?
    ghil-toplevel-env-table
 ;;; Variables
 ;;;
 
-(define-record (<ghil-var> env name kind (type #f) (value #f) (index #f)))
+(define-record (<ghil-var> env name kind (index #f)))
 
 \f
 ;;;