Merge branch 'master' into feature/llvm-cgapi

This commit is contained in:
Brandon Fish
2019-05-05 13:25:51 -05:00
38 changed files with 351 additions and 119 deletions

View File

@ -52,6 +52,7 @@ macro_rules! intcast {
}
intcast! { u8 i8 u16 i16 u32 i32 u64 i64 }
#[repr(transparent)]
pub struct Atomic<T> {
v: UnsafeCell<Wrapping<T>>,
}