projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48f3606
)
Fix compiler crash on SVM with constant that doesn't fit in 32-bit signed.
author
Chris Hanson
<org/chris-hanson/cph>
Fri, 27 Jan 2017 21:51:10 +0000
(13:51 -0800)
committer
Chris Hanson
<org/chris-hanson/cph>
Fri, 27 Jan 2017 21:51:10 +0000
(13:51 -0800)
src/runtime/bytevector.scm
patch
|
blob
|
history
diff --git
a/src/runtime/bytevector.scm
b/src/runtime/bytevector.scm
index 6d3bbf2a384fadef281268d48c72e80b78ad5d1a..9e08530da4ba5e07c06c6fb91f2db7ba20c6f938 100644
(file)
--- a/
src/runtime/bytevector.scm
+++ b/
src/runtime/bytevector.scm
@@
-241,7
+241,7
@@
USA.
(define (fix:u32? object)
(and (index-fixnum? object)
- (
fix
:<= object #xFFFFFFFF)))
+ (
int
:<= object #xFFFFFFFF)))
(define-integrable (fix:bytes->u32le b0 b1 b2 b3)
(fix:bytes->u32be b3 b2 b1 b0))