From: Chris Hanson Date: Mon, 6 Dec 2004 02:34:04 +0000 (+0000) Subject: Fix type error in structure definition. X-Git-Tag: 20090517-FFI~1428 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=18c746e3a12f552359d603a95cfe52014395d1f3;p=mit-scheme.git Fix type error in structure definition. --- diff --git a/v7/src/compiler/rtlbase/rgraph.scm b/v7/src/compiler/rtlbase/rgraph.scm index e4a5f7a3a..b561fc8fb 100644 --- a/v7/src/compiler/rtlbase/rgraph.scm +++ b/v7/src/compiler/rtlbase/rgraph.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: rgraph.scm,v 4.10 2003/02/14 18:28:08 cph Exp $ +$Id: rgraph.scm,v 4.11 2004/12/06 02:34:04 cph Exp $ -Copyright (c) 1987, 1988, 1989, 1990, 1999 Massachusetts Institute of Technology +Copyright 1987,1988,1989,1990,2004 Massachusetts Institute of Technology This file is part of MIT/GNU Scheme. @@ -26,13 +26,13 @@ USA. ;;;; Program Graph Abstraction (declare (usual-integrations)) - + (define-structure (rgraph (type vector) - (copier false) + (copier #f) (constructor make-rgraph (n-registers))) n-registers - entry-edges - bblocks + (entry-edges '()) + (bblocks '()) register-bblock register-n-refs register-n-deaths