projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19319c9
)
Convert an ASSERT into an AVER in INIT-LIVE-TNS
author
Paul Khuong
<pvk@pvk.ca>
Tue, 12 Nov 2013 22:55:38 +0000
(17:55 -0500)
committer
Paul Khuong
<pvk@pvk.ca>
Mon, 2 Dec 2013 03:44:43 +0000
(22:44 -0500)
src/compiler/pack.lisp
patch
|
blob
|
history
diff --git
a/src/compiler/pack.lisp
b/src/compiler/pack.lisp
index
cc5afac
..
60d8565
100644
(file)
--- a/
src/compiler/pack.lisp
+++ b/
src/compiler/pack.lisp
@@
-856,8
+856,7
@@
((= offset end))
(declare (type index offset end))
(setf (svref (finite-sb-live-tns sb) offset) tn))
- (assert (and (null (tn-reads tn))
- (null (tn-writes tn))))))))
+ (aver (and (null (tn-reads tn)) (null (tn-writes tn))))))))
(setq *live-block* block)
(setq *live-vop* (ir2-block-last-vop block))