Skip to content
Snippets Groups Projects
Commit 5fa3f881 authored by ram's avatar ram
Browse files

Handle :ERROR COMBINATION-KIND.

parent d1aa4c47
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/byte-comp.lisp,v 1.3 1992/08/02 19:50:01 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/byte-comp.lisp,v 1.4 1992/09/07 15:33:39 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -418,6 +418,9 @@
(annotate-local-call call))
(:full
(annotate-full-call call))
(:error
(setf (basic-combination-kind call) :full)
(annotate-full-call call))
(t
(unless (and (function-info-byte-compile kind)
(funcall (or (function-info-byte-annotate kind)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment