about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/back
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2025-09-25 18:10:55 +1000
committerZalathar <Zalathar@users.noreply.github.com>2025-09-25 18:10:55 +1000
commit85018f09f67bd54868fe12a4632bbd637a474853 (patch)
tree0a49e6cf040a6af5a5ad9456177ca8d848f22031 /compiler/rustc_codegen_llvm/src/back
parentae12bc21d8ec76bbb753d4da168e9b08e1b09ebf (diff)
Use `LLVMDisposeTargetMachine`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/back')
-rw-r--r--compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs b/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs
index d5228f0e0de..903a882916e 100644
--- a/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs
+++ b/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs
@@ -95,8 +95,6 @@ impl Drop for OwnedTargetMachine {
         // SAFETY: constructing ensures we have a valid pointer created by
         // llvm::LLVMRustCreateTargetMachine OwnedTargetMachine is not copyable so there is no
         // double free or use after free.
-        unsafe {
-            llvm::LLVMRustDisposeTargetMachine(self.tm_unique.as_ptr());
-        }
+        unsafe { llvm::LLVMDisposeTargetMachine(self.tm_unique) };
     }
 }