about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/consts.rs
diff options
context:
space:
mode:
authorOli Scherer <github333195615777966@oli-obk.de>2025-07-10 07:27:41 +0000
committerOli Scherer <github333195615777966@oli-obk.de>2025-07-10 07:27:41 +0000
commit84eeca2e2fc40bb8d6641846f18af9d8fc6a9681 (patch)
treeab835839158c7b975334559153b12c8709ca7df6 /compiler/rustc_codegen_llvm/src/consts.rs
parent6b3ae3f6e45a33c2d95fa0362c9b2593e567fd34 (diff)
downloadrust-84eeca2e2fc40bb8d6641846f18af9d8fc6a9681.tar.gz
rust-84eeca2e2fc40bb8d6641846f18af9d8fc6a9681.zip
Make some "safe" llvm ops actually sound
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/consts.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/consts.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/consts.rs b/compiler/rustc_codegen_llvm/src/consts.rs
index 28f5282c6b0..9c5008e0304 100644
--- a/compiler/rustc_codegen_llvm/src/consts.rs
+++ b/compiler/rustc_codegen_llvm/src/consts.rs
@@ -430,7 +430,7 @@ impl<'ll> CodegenCx<'ll, '_> {
                 // specific rules on what can be cast. So instead of adding a new way to
                 // generate static initializers that match the static's type, we picked
                 // the easier option and retroactively change the type of the static item itself.
-                let name = llvm::get_value_name(g).to_vec();
+                let name = llvm::get_value_name(g);
                 llvm::set_value_name(g, b"");
 
                 let linkage = llvm::get_linkage(g);