X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Fmove.lisp;h=0286e9a0e3385cc0b6c52b8b76db4da5093a4afa;hb=4719b7d5d66c5930d3efd6a6d8e7572b16809f8d;hp=505314f89c05b8e525cf0964bb9e349950456d3a;hpb=adf0d51d2bde8b723276bacf94641df9aa5ae561;p=sbcl.git diff --git a/src/compiler/x86/move.lisp b/src/compiler/x86/move.lisp index 505314f..0286e9a 100644 --- a/src/compiler/x86/move.lisp +++ b/src/compiler/x86/move.lisp @@ -11,9 +11,6 @@ (in-package "SB!VM") -(file-comment - "$Header$") - (define-move-function (load-immediate 1) (vop x y) ((immediate) (any-reg descriptor-reg)) @@ -283,7 +280,7 @@ (:note "signed word to integer coercion") (:node-var node) (:generator 20 - (assert (not (location= x y))) + (aver (not (location= x y))) (let ((bignum (gen-label)) (done (gen-label))) (inst mov y x) @@ -344,9 +341,9 @@ (:node-var node) (:note "unsigned word to integer coercion") (:generator 20 - (assert (not (location= x y))) - (assert (not (location= x alloc))) - (assert (not (location= y alloc))) + (aver (not (location= x y))) + (aver (not (location= x alloc))) + (aver (not (location= y alloc))) (let ((bignum (gen-label)) (done (gen-label)) (one-word-bignum (gen-label))