From cbf6290a234eaa72f7b054fc3044baaceea8cfdf Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 23 Mar 1992 14:46:19 +0000 Subject: [PATCH] Fixed syntax error in defstruct of ir2-block found by new parsing code. --- compiler/vop.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/vop.lisp b/compiler/vop.lisp index 4512c7f42..29571db2c 100644 --- a/compiler/vop.lisp +++ b/compiler/vop.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.31 1991/12/15 08:28:44 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.32 1992/03/23 14:46:19 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -181,8 +181,8 @@ ;; ;; The first and last VOP in this block. If there are none, both slots are ;; null. - (start-vop nil (or vop null)) - (last-vop nil (or vop null)) + (start-vop nil :type (or vop null)) + (last-vop nil :type (or vop null)) ;; ;; Number of local TNs actually allocated. (local-tn-count 0 :type local-tn-count) -- GitLab