Skip to content

Commit

Permalink
comment formatting
Browse files Browse the repository at this point in the history
Co-authored-by: Ralf Jung <[email protected]>
  • Loading branch information
nia-e and RalfJung authored Dec 11, 2022
1 parent d5a6525 commit a993d4f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,10 @@ impl<'mir, 'tcx> MiriMachine<'mir, 'tcx> {
"wasm32" | "wasm64" => 64 * 1024, // https://webassembly.github.io/spec/core/exec/runtime.html#memory-instances
"aarch64" =>
if target.options.vendor.as_ref() == "apple" {
16 * 1024 // No "definitive" source, but see:
// https://github.com/ziglang/zig/issues/11308
// https://www.wwdcnotes.com/notes/wwdc20/10214/ etc.
// No "definitive" source, but see:
// https://www.wwdcnotes.com/notes/wwdc20/10214/
// https://github.com/ziglang/zig/issues/11308 etc.
16 * 1024
} else {
4 * 1024
},
Expand Down

0 comments on commit a993d4f

Please sign in to comment.