You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
New global configuration:
misc_expandJalr: If True then jalr instructions will be always emitted
with two operands. Otherwise the rd register will be omitted if it is $ra and will be used explicitly if it isn't $ra. Defaults to False.
Fixed
Fix crash in Rust bindings for to Rust 1.78.
This happens because slice.get_unchecked now performs OoB checks in debug
builds, which is is triggered when trying to dereference unsized C arrays.
The C API was returning string sizes without accounting for the null
terminator, which produced issues on the Rust size which was not manually
including it.