]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_codegen_llvm/abi.rs
codegen: be more explicit about setting giving names to allocas.
[rust.git] / src / librustc_codegen_llvm / abi.rs
index ff87afe0c444b7556739c73517056a6c7e919f20..2ca517dc3b1a7e8319ece659d0e02c43db65bdf7 100644 (file)
@@ -229,7 +229,7 @@ fn store(
                 // We instead thus allocate some scratch space...
                 let scratch_size = cast.size(bx);
                 let scratch_align = cast.align(bx);
-                let llscratch = bx.alloca(cast.llvm_type(bx), "abi_cast", scratch_align);
+                let llscratch = bx.alloca(cast.llvm_type(bx), scratch_align);
                 bx.lifetime_start(llscratch, scratch_size);
 
                 // ...where we first store the value...