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
6cc44f23
Commit
6cc44f23
authored
Sep 07, 1992
by
ram
Browse files
Changed erroneous calls to be :ERROR kind, not :FULL
parent
5fa3f881
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/checkgen.lisp
View file @
6cc44f23
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/checkgen.lisp,v 1.2
1
1992/0
8
/0
1
1
7
:34:
14
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/checkgen.lisp,v 1.2
2
1992/0
9
/0
7
1
5
:34:
20
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -18,7 +18,7 @@
;;;
;;; Written by Rob MacLachlan
;;;
(
in-package
'c
)
(
in-package
"C"
)
;;;; Cost estimation:
...
...
@@ -285,7 +285,7 @@
(
declare
(
type
continuation
cont
))
(
let
((
dest
(
continuation-dest
cont
)))
(
cond
((
eq
(
continuation-type-check
cont
)
:error
)
(
if
(
and
(
combination-p
dest
)
(
eq
(
combination-kind
dest
)
:
full
))
(
if
(
and
(
combination-p
dest
)
(
eq
(
combination-kind
dest
)
:
error
))
nil
t
))
((
or
(
not
dest
)
...
...
@@ -295,7 +295,7 @@
(
let
((
kind
(
basic-combination-kind
dest
)))
(
cond
((
eq
cont
(
basic-combination-fun
dest
))
t
)
((
eq
kind
:local
)
t
)
((
eq
kind
:full
)
nil
)
((
member
kind
'
(
:full
:error
)
)
nil
)
((
function-info-ir2-convert
kind
)
t
)
(
t
(
dolist
(
template
(
function-info-templates
kind
)
nil
)
...
...
@@ -463,10 +463,11 @@
(
setf
(
continuation-%type-check
cont
)
:error
)
(
let
((
dest
(
continuation-dest
cont
)))
(
when
(
and
(
combination-p
dest
)
(
let
((
info
(
basic-combination-kind
dest
)))
(
and
(
function-info-p
info
)
(
not
(
function-info-ir2-convert
info
)))))
(
setf
(
basic-combination-kind
dest
)
:full
)))
(
let
((
kind
(
basic-combination-kind
dest
)))
(
or
(
eq
kind
:full
)
(
and
(
function-info-p
kind
)
(
not
(
function-info-ir2-convert
kind
))))))
(
setf
(
basic-combination-kind
dest
)
:error
)))
(
undefined-value
))
...
...
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