blob: a6462b358347b3111a0c009662ac9a10867452f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use super::BackendTypes;
use rustc_hir::def_id::DefId;
use rustc_target::abi::Align;
pub trait StaticMethods: BackendTypes {
fn static_addr_of(&self, cv: Self::Value, align: Align, kind: Option<&str>) -> Self::Value;
fn codegen_static(&self, def_id: DefId, is_mutable: bool);
}
pub trait StaticBuilderMethods: BackendTypes {
fn get_static(&mut self, def_id: DefId) -> Self::Value;
}
|