@@ -1299,38 +1299,38 @@ extern "rust-intrinsic" {
1299
1299
/// The stabilized versions of this intrinsic are available on the integer
1300
1300
/// primitives via the `wrapping_add` method. For example,
1301
1301
/// [`std::u32::wrapping_add`](../../std/primitive.u32.html#method.wrapping_add)
1302
- #[ cfg( boostrap_stdarch_ignore_this ) ]
1302
+ #[ cfg( bootstrap ) ]
1303
1303
pub fn overflowing_add < T > ( a : T , b : T ) -> T ;
1304
1304
/// Returns (a - b) mod 2<sup>N</sup>, where N is the width of T in bits.
1305
1305
/// The stabilized versions of this intrinsic are available on the integer
1306
1306
/// primitives via the `wrapping_sub` method. For example,
1307
1307
/// [`std::u32::wrapping_sub`](../../std/primitive.u32.html#method.wrapping_sub)
1308
- #[ cfg( boostrap_stdarch_ignore_this ) ]
1308
+ #[ cfg( bootstrap ) ]
1309
1309
pub fn overflowing_sub < T > ( a : T , b : T ) -> T ;
1310
1310
/// Returns (a * b) mod 2<sup>N</sup>, where N is the width of T in bits.
1311
1311
/// The stabilized versions of this intrinsic are available on the integer
1312
1312
/// primitives via the `wrapping_mul` method. For example,
1313
1313
/// [`std::u32::wrapping_mul`](../../std/primitive.u32.html#method.wrapping_mul)
1314
- #[ cfg( boostrap_stdarch_ignore_this ) ]
1314
+ #[ cfg( bootstrap ) ]
1315
1315
pub fn overflowing_mul < T > ( a : T , b : T ) -> T ;
1316
1316
1317
1317
/// Returns (a + b) mod 2<sup>N</sup>, where N is the width of T in bits.
1318
1318
/// The stabilized versions of this intrinsic are available on the integer
1319
1319
/// primitives via the `wrapping_add` method. For example,
1320
1320
/// [`std::u32::wrapping_add`](../../std/primitive.u32.html#method.wrapping_add)
1321
- #[ cfg( not( boostrap_stdarch_ignore_this ) ) ]
1321
+ #[ cfg( not( bootstrap ) ) ]
1322
1322
pub fn wrapping_add < T > ( a : T , b : T ) -> T ;
1323
1323
/// Returns (a - b) mod 2<sup>N</sup>, where N is the width of T in bits.
1324
1324
/// The stabilized versions of this intrinsic are available on the integer
1325
1325
/// primitives via the `wrapping_sub` method. For example,
1326
1326
/// [`std::u32::wrapping_sub`](../../std/primitive.u32.html#method.wrapping_sub)
1327
- #[ cfg( not( boostrap_stdarch_ignore_this ) ) ]
1327
+ #[ cfg( not( bootstrap ) ) ]
1328
1328
pub fn wrapping_sub < T > ( a : T , b : T ) -> T ;
1329
1329
/// Returns (a * b) mod 2<sup>N</sup>, where N is the width of T in bits.
1330
1330
/// The stabilized versions of this intrinsic are available on the integer
1331
1331
/// primitives via the `wrapping_mul` method. For example,
1332
1332
/// [`std::u32::wrapping_mul`](../../std/primitive.u32.html#method.wrapping_mul)
1333
- #[ cfg( not( boostrap_stdarch_ignore_this ) ) ]
1333
+ #[ cfg( not( bootstrap ) ) ]
1334
1334
pub fn wrapping_mul < T > ( a : T , b : T ) -> T ;
1335
1335
1336
1336
/// Computes `a + b`, while saturating at numeric bounds.
0 commit comments