From e1fdc3ff3f4086531b77b6cf5185b9305ef3e4e7 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Thu, 1 Aug 2002 13:06:06 +0000 Subject: [PATCH] The recent extended loop changes requiring compound forms after do cause an error here. Removing the offending form. --- compiler/x86/call.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/x86/call.lisp b/compiler/x86/call.lisp index 1ef18baef..af8720457 100644 --- a/compiler/x86/call.lisp +++ b/compiler/x86/call.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/x86/call.lisp,v 1.16 1998/06/19 14:26:12 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/call.lisp,v 1.17 2002/08/01 13:06:06 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -306,7 +306,7 @@ for tn-ref = (tn-ref-across 2nd-tn-ref) then (tn-ref-across tn-ref) for count from 2 below register-arg-count - do count (inst mov (tn-ref-tn tn-ref) 2nd-tn)))) + do (inst mov (tn-ref-tn tn-ref) 2nd-tn)))) (inst mov ebx-tn esp-tn) (emit-label regs-defaulted) (inst mov esp-tn ebx-tn))) -- GitLab