about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2025-08-15 13:12:19 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2025-09-06 18:37:23 +0000
commite3d0b7d6480d7e4dbbbea24635f56e28dfe735b3 (patch)
treea5918675c444cc705e2610e122dae24cf8fa92bd /compiler/rustc_codegen_ssa
parentbea625f3275e3c897dc965ed97a1d19ef7831f01 (diff)
downloadrust-e3d0b7d6480d7e4dbbbea24635f56e28dfe735b3.tar.gz
rust-e3d0b7d6480d7e4dbbbea24635f56e28dfe735b3.zip
Remove thin_link_data method from ThinBufferMethods
It is only used within cg_llvm.
Diffstat (limited to 'compiler/rustc_codegen_ssa')
-rw-r--r--compiler/rustc_codegen_ssa/src/traits/write.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/traits/write.rs b/compiler/rustc_codegen_ssa/src/traits/write.rs
index cc7c4e46d7b..40f546ebc92 100644
--- a/compiler/rustc_codegen_ssa/src/traits/write.rs
+++ b/compiler/rustc_codegen_ssa/src/traits/write.rs
@@ -59,7 +59,6 @@ pub trait WriteBackendMethods: Clone + 'static {
 
 pub trait ThinBufferMethods: Send + Sync {
     fn data(&self) -> &[u8];
-    fn thin_link_data(&self) -> &[u8];
 }
 
 pub trait ModuleBufferMethods: Send + Sync {