about summary refs log tree commit diff
path: root/src/librustc_codegen_ssa
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2018-11-24 17:30:48 +0100
committerbjorn3 <bjorn3@users.noreply.github.com>2018-11-29 18:19:43 +0100
commite8da3c6c3266cb4b7673ca78c19dea64dcee8759 (patch)
treeb5a019233f68cdad850cbdb748d7c3a452dec586 /src/librustc_codegen_ssa
parentaaca5a38ee1a2144ba84bf863e59bafb89c37346 (diff)
downloadrust-e8da3c6c3266cb4b7673ca78c19dea64dcee8759.tar.gz
rust-e8da3c6c3266cb4b7673ca78c19dea64dcee8759.zip
Remove static_addr_of_mut from cg_ssa
Diffstat (limited to 'src/librustc_codegen_ssa')
-rw-r--r--src/librustc_codegen_ssa/traits/statics.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc_codegen_ssa/traits/statics.rs b/src/librustc_codegen_ssa/traits/statics.rs
index 0eeddd9a29e..6f498892b71 100644
--- a/src/librustc_codegen_ssa/traits/statics.rs
+++ b/src/librustc_codegen_ssa/traits/statics.rs
@@ -13,7 +13,6 @@ use rustc::hir::def_id::DefId;
 use rustc::ty::layout::Align;
 
 pub trait StaticMethods: BackendTypes {
-    fn static_addr_of_mut(&self, cv: Self::Value, align: Align, kind: Option<&str>) -> Self::Value;
     fn static_addr_of(&self, cv: Self::Value, align: Align, kind: Option<&str>) -> Self::Value;
     fn get_static(&self, def_id: DefId) -> Self::Value;
     fn codegen_static(&self, def_id: DefId, is_mutable: bool);