projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
9d17f7d
)
Ignore an argument in x86's EMIT-CONSTANT-SEGMENT-HEADER
author
David Lichteblau
<david@lichteblau.com>
Fri, 7 Sep 2012 14:09:28 +0000
(16:09 +0200)
committer
David 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
patch
|
blob
|
history
diff --git
a/src/compiler/x86/insts.lisp
b/src/compiler/x86/insts.lisp
index
cc6b53e
..
0509468
100644
(file)
--- a/
src/compiler/x86/insts.lisp
+++ b/
src/compiler/x86/insts.lisp
@@
-2884,7
+2884,7
@@
: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)