Fix compilation of literal bitvectors.
* libguile/arrays.c (scm_from_contiguous_typed_array): Fix BYTE_LEN
sanity check for bitvectors.
* test-suite/tests/unif.test ("syntax")["bitvector is self-evaluating"]:
New test.
* module/ice-9/deprecated.scm (#\y): Fix deprecation comment: `#*' is
not a read syntax.
This commit is contained in:
parent
29553c54b5
commit
cd48c32cf4
3 changed files with 8 additions and 4 deletions
|
|
@ -243,7 +243,8 @@ scm_from_contiguous_typed_array (SCM type, SCM bounds, const void *bytes,
|
|||
}
|
||||
else
|
||||
{
|
||||
if (rlen * (sz / 8) + rlen * (sz % 8) / 8 != byte_len)
|
||||
/* byte_len ?= ceil (rlen * sz / 8) */
|
||||
if (byte_len != (rlen * sz + 7) / 8)
|
||||
SCM_MISC_ERROR ("byte length and dimensions do not match", SCM_EOL);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue