Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upJSVal and ABI #309
Closed
JSVal and ABI #309
Comments
|
Fixed by servo/rust-mozjs#9. Thanks. |
bors-servo
pushed a commit
that referenced
this issue
May 22, 2013
This is a fix for #309 and #308 along with servo/rust-mozjs#18. Change JSVal from u64 to {u64}
bors-servo
pushed a commit
that referenced
this issue
May 22, 2013
This is a fix for #309 and #308 along with servo/rust-mozjs#18. Change JSVal from u64 to {u64}
ChrisParis
pushed a commit
to ChrisParis/servo
that referenced
this issue
Sep 7, 2014
Update html5lib tests
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, JSVal is 64-bit integer in Rust side and 64-bit union in C++ side. This happens to work on x86_64, but can't be expected to work on other architectures, since integer and union can be handled differently by ABI. This happens to be the case on ARM.
Reduced test case at https://gist.github.com/sanxiyn/5219751