Ignore an argument in x86's EMIT-CONSTANT-SEGMENT-HEADER
authorDavid Lichteblau <david@lichteblau.com>
Fri, 7 Sep 2012 14:09:28 +0000 (16:09 +0200)
committerDavid Lichteblau <david@lichteblau.com>
Fri, 7 Sep 2012 14:09:35 +0000 (16:09 +0200)
Fixes the build on this platform.

src/compiler/x86/insts.lisp

index cc6b53e..0509468 100644 (file)
                            :disp (make-fixup nil :code-object label)))))
 
 (defun emit-constant-segment-header (segment constants optimize)
-  (declare (ignore constants))
+  (declare (ignore segment constants))
   (loop repeat (if optimize 64 16) do (inst byte #x90)))
 
 (defun size-nbyte (size)