2017-07-28 09:48:43 -05:00
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Copy, Clone)]
|
2017-08-09 07:53:22 -05:00
|
|
|
pub enum MemoryKind {
|
2017-07-28 09:48:43 -05:00
|
|
|
/// Error if deallocated any other way than `rust_deallocate`
|
|
|
|
Rust,
|
|
|
|
/// Error if deallocated any other way than `free`
|
|
|
|
C,
|
|
|
|
/// Part of env var emulation
|
|
|
|
Env,
|
|
|
|
}
|
|
|
|
|
2017-10-05 05:31:47 -05:00
|
|
|
impl Into<::rustc::mir::interpret::MemoryKind<MemoryKind>> for MemoryKind {
|
|
|
|
fn into(self) -> ::rustc::mir::interpret::MemoryKind<MemoryKind> {
|
|
|
|
::rustc::mir::interpret::MemoryKind::Machine(self)
|
2017-07-28 09:48:43 -05:00
|
|
|
}
|
|
|
|
}
|