blob: 0e1e445c72f35af79e566799b3643911e9bc503c [file] [log] [blame]
use rustc_abi::Align;
use rustc_hir::def_id::DefId;
use super::BackendTypes;
pub trait StaticCodegenMethods: BackendTypes {
fn static_addr_of(&self, cv: Self::Value, align: Align, kind: Option<&str>) -> Self::Value;
fn codegen_static(&mut self, def_id: DefId);
}
pub trait StaticBuilderMethods: BackendTypes {
fn get_static(&mut self, def_id: DefId) -> Self::Value;
}