diff options
| author | Karan Janthe <karanjanthe@gmail.com> | 2025-08-23 23:10:48 +0000 | 
|---|---|---|
| committer | Karan Janthe <karanjanthe@gmail.com> | 2025-09-19 04:02:20 +0000 | 
| commit | 664e83b3e76b51fb5192e74a64eef3bc5bbd4e32 (patch) | |
| tree | e777129c436cdcb8fa1cfaec619a6c8afc586395 /compiler/rustc_codegen_llvm/src/abi.rs | |
| parent | 5d3ebc3804299503387b7ea1427f1619d410c2b2 (diff) | |
| download | rust-664e83b3e76b51fb5192e74a64eef3bc5bbd4e32.tar.gz rust-664e83b3e76b51fb5192e74a64eef3bc5bbd4e32.zip | |
added typetree support for memcpy
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/abi.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/abi.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/compiler/rustc_codegen_llvm/src/abi.rs b/compiler/rustc_codegen_llvm/src/abi.rs index 11be7041167..61fadad6066 100644 --- a/compiler/rustc_codegen_llvm/src/abi.rs +++ b/compiler/rustc_codegen_llvm/src/abi.rs @@ -246,6 +246,7 @@ impl<'ll, 'tcx> ArgAbiExt<'ll, 'tcx> for ArgAbi<'tcx, Ty<'tcx>> { scratch_align, bx.const_usize(copy_bytes), MemFlags::empty(), + None, ); bx.lifetime_end(llscratch, scratch_size); } | 
