@@ -1299,38 +1299,38 @@ extern "rust-intrinsic" {
12991299 /// The stabilized versions of this intrinsic are available on the integer
13001300 /// primitives via the `wrapping_add` method. For example,
13011301 /// [`std::u32::wrapping_add`](../../std/primitive.u32.html#method.wrapping_add)
1302- #[ cfg( boostrap_stdarch_ignore_this ) ]
1302+ #[ cfg( bootstrap ) ]
13031303 pub fn overflowing_add < T > ( a : T , b : T ) -> T ;
13041304 /// Returns (a - b) mod 2<sup>N</sup>, where N is the width of T in bits.
13051305 /// The stabilized versions of this intrinsic are available on the integer
13061306 /// primitives via the `wrapping_sub` method. For example,
13071307 /// [`std::u32::wrapping_sub`](../../std/primitive.u32.html#method.wrapping_sub)
1308- #[ cfg( boostrap_stdarch_ignore_this ) ]
1308+ #[ cfg( bootstrap ) ]
13091309 pub fn overflowing_sub < T > ( a : T , b : T ) -> T ;
13101310 /// Returns (a * b) mod 2<sup>N</sup>, where N is the width of T in bits.
13111311 /// The stabilized versions of this intrinsic are available on the integer
13121312 /// primitives via the `wrapping_mul` method. For example,
13131313 /// [`std::u32::wrapping_mul`](../../std/primitive.u32.html#method.wrapping_mul)
1314- #[ cfg( boostrap_stdarch_ignore_this ) ]
1314+ #[ cfg( bootstrap ) ]
13151315 pub fn overflowing_mul < T > ( a : T , b : T ) -> T ;
13161316
13171317 /// Returns (a + b) mod 2<sup>N</sup>, where N is the width of T in bits.
13181318 /// The stabilized versions of this intrinsic are available on the integer
13191319 /// primitives via the `wrapping_add` method. For example,
13201320 /// [`std::u32::wrapping_add`](../../std/primitive.u32.html#method.wrapping_add)
1321- #[ cfg( not( boostrap_stdarch_ignore_this ) ) ]
1321+ #[ cfg( not( bootstrap ) ) ]
13221322 pub fn wrapping_add < T > ( a : T , b : T ) -> T ;
13231323 /// Returns (a - b) mod 2<sup>N</sup>, where N is the width of T in bits.
13241324 /// The stabilized versions of this intrinsic are available on the integer
13251325 /// primitives via the `wrapping_sub` method. For example,
13261326 /// [`std::u32::wrapping_sub`](../../std/primitive.u32.html#method.wrapping_sub)
1327- #[ cfg( not( boostrap_stdarch_ignore_this ) ) ]
1327+ #[ cfg( not( bootstrap ) ) ]
13281328 pub fn wrapping_sub < T > ( a : T , b : T ) -> T ;
13291329 /// Returns (a * b) mod 2<sup>N</sup>, where N is the width of T in bits.
13301330 /// The stabilized versions of this intrinsic are available on the integer
13311331 /// primitives via the `wrapping_mul` method. For example,
13321332 /// [`std::u32::wrapping_mul`](../../std/primitive.u32.html#method.wrapping_mul)
1333- #[ cfg( not( boostrap_stdarch_ignore_this ) ) ]
1333+ #[ cfg( not( bootstrap ) ) ]
13341334 pub fn wrapping_mul < T > ( a : T , b : T ) -> T ;
13351335
13361336 /// Computes `a + b`, while saturating at numeric bounds.
0 commit comments