Skip to content

Commit

Permalink
Merge pull request ocaml#13807 from matthewelse/push-qoxskxtmtlzr
Browse files Browse the repository at this point in the history
Add support for unaligned accesses on arm64
  • Loading branch information
gasche authored Feb 19, 2025
2 parents dbb4a31 + 7ed394b commit 25265d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ Working version
`.size` and `.type` directives and the `.note.GNU-stack` section
(Samuel Hym, review by Miod Vallat, Antonin Décimo and Gabriel Scherer)

- #13807: Allow unaligned memory accesses on ARM64. (Matthew Else, review by
Xavier Leroy)

### Standard library:

- #13796: Add Uchar.utf_8_decode_length_of_byte and
Expand Down
2 changes: 1 addition & 1 deletion asmcomp/arm64/arch.ml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let size_addr = 8
let size_int = 8
let size_float = 8

let allow_unaligned_access = false
let allow_unaligned_access = true

(* Behavior of division *)

Expand Down

0 comments on commit 25265d7

Please sign in to comment.