Skip to content

Commit 25265d7

Browse files
authored
Merge pull request ocaml#13807 from matthewelse/push-qoxskxtmtlzr
Add support for unaligned accesses on arm64
2 parents dbb4a31 + 7ed394b commit 25265d7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Changes

+3
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ Working version
138138
`.size` and `.type` directives and the `.note.GNU-stack` section
139139
(Samuel Hym, review by Miod Vallat, Antonin Décimo and Gabriel Scherer)
140140

141+
- #13807: Allow unaligned memory accesses on ARM64. (Matthew Else, review by
142+
Xavier Leroy)
143+
141144
### Standard library:
142145

143146
- #13796: Add Uchar.utf_8_decode_length_of_byte and

asmcomp/arm64/arch.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ let size_addr = 8
7474
let size_int = 8
7575
let size_float = 8
7676

77-
let allow_unaligned_access = false
77+
let allow_unaligned_access = true
7878

7979
(* Behavior of division *)
8080

0 commit comments

Comments
 (0)