Update of /cvsroot/sbcl/sbcl/src/code
In directory usw-pr-cvs1:/tmp/cvs-serv3270/src/code
Modified Files:
late-type.lisp
Log Message:
0.7.4.2:
merged patch from Antonio Martinez (sbcl-devel 22 May 2002)...
...more full-featured restarts in COMPILE-STEM so that it can
be less painful to resume compilation after fixing a
minor problem
...DECLARE IGNORE so that old CMU CL works as xc host again
Index: late-type.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/code/late-type.lisp,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** late-type.lisp 26 May 2002 15:00:23 -0000 1.47
--- late-type.lisp 26 May 2002 20:28:27 -0000 1.48
***************
*** 2167,2170 ****
--- 2167,2171 ----
(!define-type-method (union :complex-=) (type1 type2)
+ (declare (ignore type1))
(if (some #'hairy-type-p (union-type-types type2))
(values nil nil)
|