Skip to content

1.11.0

Compare
Choose a tag to compare
@AngheloAlf AngheloAlf released this 22 May 16:52
· 15 commits to master since this release
34ecb56

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.
  • Fix heap corruption in Rust bindings (#62)
    • 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.