summary refs log tree commit diff
path: root/src/libcore/num
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2016-03-20 22:37:35 +0200
committerEduard Burtescu <edy.burt@gmail.com>2016-03-20 22:37:35 +0200
commitec84ab0e0f5ceda69f69078923fc04482c1dda9b (patch)
treed62e60009144884620f860e6f840ca91ed8de761 /src/libcore/num
parent173676efdc8a9f1f2a86d37c08a104e2e505f9e4 (diff)
downloadrust-ec84ab0e0f5ceda69f69078923fc04482c1dda9b.tar.gz
rust-ec84ab0e0f5ceda69f69078923fc04482c1dda9b.zip
Update snapshots to 2016-03-18 (235d774).
Diffstat (limited to 'src/libcore/num')
-rw-r--r--src/libcore/num/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs
index e6f83498ab1..229a864d712 100644
--- a/src/libcore/num/mod.rs
+++ b/src/libcore/num/mod.rs
@@ -1008,7 +1008,7 @@ macro_rules! int_impl {
         /// ```
         #[stable(feature = "rust1", since = "1.0.0")]
         #[inline]
-        #[cfg_attr(not(stage0), rustc_no_mir)] // FIXME #29769 MIR overflow checking is TBD.
+        #[rustc_no_mir] // FIXME #29769 MIR overflow checking is TBD.
         pub fn pow(self, mut exp: u32) -> Self {
             let mut base = self;
             let mut acc = Self::one();
@@ -1050,7 +1050,7 @@ macro_rules! int_impl {
         /// ```
         #[stable(feature = "rust1", since = "1.0.0")]
         #[inline]
-        #[cfg_attr(not(stage0), rustc_no_mir)] // FIXME #29769 MIR overflow checking is TBD.
+        #[rustc_no_mir] // FIXME #29769 MIR overflow checking is TBD.
         pub fn abs(self) -> Self {
             if self.is_negative() {
                 // Note that the #[inline] above means that the overflow
@@ -2015,7 +2015,7 @@ macro_rules! uint_impl {
         /// ```
         #[stable(feature = "rust1", since = "1.0.0")]
         #[inline]
-        #[cfg_attr(not(stage0), rustc_no_mir)] // FIXME #29769 MIR overflow checking is TBD.
+        #[rustc_no_mir] // FIXME #29769 MIR overflow checking is TBD.
         pub fn pow(self, mut exp: u32) -> Self {
             let mut base = self;
             let mut acc = Self::one();