Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
b847a3ef
Commit
b847a3ef
authored
Sep 07, 1992
by
ram
Browse files
Handle :ERROR COMBINATION-KIND.
parent
50d252cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/ltn.lisp
View file @
b847a3ef
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ltn.lisp,v 1.3
2
1992/0
6
/0
2
1
9:42:04
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ltn.lisp,v 1.3
3
1992/0
9
/0
7
1
6:04:29
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -233,6 +233,8 @@
(
setf
(
basic-combination-info
call
)
:funny
)
(
setf
(
node-tail-p
call
)
nil
))
(
t
(
when
(
eq
kind
:error
)
(
setf
(
basic-combination-kind
call
)
:full
))
(
setf
(
basic-combination-info
call
)
:full
)
(
flush-full-call-tail-transfer
call
))))
...
...
@@ -1026,7 +1028,7 @@
(
combination
(
case
(
basic-combination-kind
node
)
(
:local
(
ltn-analyze-local-call
node
policy
))
(
:full
(
ltn-default-call
node
policy
))
(
(
:full
:error
)
(
ltn-default-call
node
policy
))
(
t
(
ltn-analyze-known-call
node
policy
))))
(
cif
...
...
@@ -1040,7 +1042,7 @@
(
mv-combination
(
ecase
(
basic-combination-kind
node
)
(
:local
(
ltn-analyze-mv-bind
node
policy
))
(
:full
(
ltn-analyze-mv-call
node
policy
)))))
(
(
:full
:error
)
(
ltn-analyze-mv-call
node
policy
)))))
(
when
(
eq
node
(
block-last
block
))
(
return
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment