Fix PFDtest HANDLER-CASE.28
... wrap in LOCALLY
** implementation of ASH-MOD32 on X86 did not work for the shift
greater than 32.
** FLUSH-DEST did not mark blocks for type check regeneration.
+ ** HANDLER-CASE failed to accept declarations in handler clauses
+ in some circumstances.
planned incompatible changes in 0.8.x:
* (not done yet, but planned:) When the profiling interface settles
`(let ((,(caaddr annotated-case)
,var))
,@body))
- ((not (cdr body))
- (car body))
(t
- `(progn ,@body)))))))
+ `(locally ,@body)))))))
annotated-cases))))))))
\f
;;;; miscellaneous
:failed)))))
(cerror (formatter "Continue from ~A") "bug ~A" :bug)))
:passed))
+
+;;; clauses in HANDLER-CASE are allowed to have declarations (and
+;;; indeed, only declarations)
+(assert
+ (null (handler-case (error "foo") (error () (declare (optimize speed))))))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.5.37"
+"0.8.5.38"