diff options
| author | bors <bors@rust-lang.org> | 2024-03-08 07:09:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-08 07:09:40 +0000 |
| commit | 4db028f44995266895ae9e75b0a0726cc690ef7c (patch) | |
| tree | 9da59f255a8a2d5451877c60b9b4d48ab5328542 /compiler/rustc_codegen_llvm/src/va_arg.rs | |
| parent | 305d2b0f5c7e8081ab21f78e2d53ed8f84aebecd (diff) | |
| parent | fcd2efeb1180162091ce8f79087b2cbd56ea0b76 (diff) | |
| download | rust-4db028f44995266895ae9e75b0a0726cc690ef7c.tar.gz rust-4db028f44995266895ae9e75b0a0726cc690ef7c.zip | |
Auto merge of #3365 - rust-lang:rustup-2024-03-08, r=RalfJung
Automatic Rustup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/va_arg.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/va_arg.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/va_arg.rs b/compiler/rustc_codegen_llvm/src/va_arg.rs index b406a04af74..220bb77d3fd 100644 --- a/compiler/rustc_codegen_llvm/src/va_arg.rs +++ b/compiler/rustc_codegen_llvm/src/va_arg.rs @@ -288,7 +288,7 @@ pub(super) fn emit_va_arg<'ll, 'tcx>( // Generic x86 "x86" => emit_ptr_va_arg(bx, addr, target_ty, false, Align::from_bytes(4).unwrap(), true), // Windows AArch64 - "aarch64" if target.is_like_windows => { + "aarch64" | "arm64ec" if target.is_like_windows => { emit_ptr_va_arg(bx, addr, target_ty, false, Align::from_bytes(8).unwrap(), false) } // macOS / iOS AArch64 |
