diff options
| author | bors <bors@rust-lang.org> | 2018-12-14 06:52:19 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-12-14 06:52:19 +0000 |
| commit | 664ede88faf57b8fc09715fc66cd9e46490ce64d (patch) | |
| tree | a3e57a948123750226a0fed966826221420039c2 /src/libstd/panic.rs | |
| parent | 97a0bd60820374165427962e9802f4f3c3f7ff7b (diff) | |
| parent | cf47a19305d929d1870414dd6911ca3191597668 (diff) | |
| download | rust-664ede88faf57b8fc09715fc66cd9e46490ce64d.tar.gz rust-664ede88faf57b8fc09715fc66cd9e46490ce64d.zip | |
Auto merge of #56536 - alexcrichton:update-master, r=Mark-Simulacrum
Bump to 1.33.0 * Update bootstrap compiler * Update version to 1.33.0 * Remove some `#[cfg(stage0)]` annotations
Diffstat (limited to 'src/libstd/panic.rs')
| -rw-r--r-- | src/libstd/panic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/panic.rs b/src/libstd/panic.rs index 099b4d6f577..3eacc7afc41 100644 --- a/src/libstd/panic.rs +++ b/src/libstd/panic.rs @@ -264,7 +264,7 @@ impl RefUnwindSafe for atomic::AtomicI32 {} #[cfg(target_has_atomic = "64")] #[unstable(feature = "integer_atomics", issue = "32976")] impl RefUnwindSafe for atomic::AtomicI64 {} -#[cfg(all(not(stage0), target_has_atomic = "128"))] +#[cfg(target_has_atomic = "128")] #[unstable(feature = "integer_atomics", issue = "32976")] impl RefUnwindSafe for atomic::AtomicI128 {} @@ -283,7 +283,7 @@ impl RefUnwindSafe for atomic::AtomicU32 {} #[cfg(target_has_atomic = "64")] #[unstable(feature = "integer_atomics", issue = "32976")] impl RefUnwindSafe for atomic::AtomicU64 {} -#[cfg(all(not(stage0), target_has_atomic = "128"))] +#[cfg(target_has_atomic = "128")] #[unstable(feature = "integer_atomics", issue = "32976")] impl RefUnwindSafe for atomic::AtomicU128 {} |
