From: Nikodemus Siivola Date: Thu, 8 Dec 2011 18:09:00 +0000 (+0200) Subject: fix tyop in ONLY-ONE-BOXED-CONSTANT-FOR-MULTIPLE-USES that broke it X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2ab450b857634fb07439f8adec488b48bdc5e408;p=sbcl.git fix tyop in ONLY-ONE-BOXED-CONSTANT-FOR-MULTIPLE-USES that broke it s/'/`/ --- diff --git a/tests/compiler.pure.lisp b/tests/compiler.pure.lisp index ed4d708..72da1a6 100644 --- a/tests/compiler.pure.lisp +++ b/tests/compiler.pure.lisp @@ -4126,7 +4126,7 @@ (fun (compile nil `(lambda (x) (unknown-fun ,big (+ ,big x)))))) - (assert (= 1 (length (ctu:find-code-constants fun :type '(eql ,big))))))) + (assert (= 1 (length (ctu:find-code-constants fun :type `(eql ,big))))))) (with-test (:name :fixnum+float-coerces-fixnum :skipped-on :x86)