master: Fix a C style warning
snuglas via Sbcl-commits <[email protected]>
| Newsgroups | gmane.lisp.steel-bank.cvs |
|---|---|
| Message-ID | <[email protected]> |
The branch "master" has been updated in SBCL:
via 5a569e62ecd5e5c07e6fd9ce4b06d52d23c9878d (commit)
from eb3d6740f548a013546f49338ffcfb146584f1e5 (commit)
- Log -----------------------------------------------------------------
commit 5a569e62ecd5e5c07e6fd9ce4b06d52d23c9878d
Author: Douglas Katzman <[email protected]>
Date: Thu Aug 27 18:31:29 2026 +0000
Fix a C style warning
simd_pack_512_mask_slots is unused
---
src/compiler/generic/genesis.lisp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/compiler/generic/genesis.lisp b/src/compiler/generic/genesis.lisp
index b9e7e4449..f576ad774 100644
--- a/src/compiler/generic/genesis.lisp
+++ b/src/compiler/generic/genesis.lisp
@@ -3426,8 +3426,7 @@ Legal values for OFFSET are -4, -8, -12, ..."
(write-tags "" "-WIDETAG" (ash (1+ sb-vm:widetag-mask) -2) -2))
(dolist (name '(symbol ratio complex sb-vm::code simple-fun
closure funcallable-instance
- weak-pointer fdefn sb-vm::value-cell
- #+sb-simd-pack-512 sb-vm::simd-pack-512-mask))
+ weak-pointer fdefn sb-vm::value-cell))
(format out "static char *~A_slots[] = {~%~{ \"~A: \",~} NULL~%};~%"
(c-name (string-downcase name))
(map 'list (lambda (x) (c-name (string-downcase (sb-vm:slot-name x))))
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL