Skip to content

Commit af780e5

Browse files
committed
Auto merge of rust-lang#78380 - bstrie:rm-old-num-const-from-tests, r=jyn514
Update tests to remove old numeric constants Part of rust-lang#68490. Care has been taken to leave the old consts where appropriate, for testing backcompat regressions, module shadowing, etc. The intrinsics docs were accidentally referring to some methods on f64 as std::f64, which I changed due to being contrary with how we normally disambiguate the shadow module from the primitive. In one other place I changed std::u8 to std::ops since it was just testing path handling in macros. For places which have legitimate uses of the old consts, deprecated attributes have been optimistically inserted. Although currently unnecessary, they exist to emphasize to any future deprecation effort the necessity of these specific symbols and prevent them from being accidentally removed.
2 parents 2e57231 + 90a2e5e commit af780e5

File tree

106 files changed

+463
-528
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+463
-528
lines changed

library/core/src/intrinsics.rs

+34-34
Original file line numberDiff line numberDiff line change
@@ -1173,133 +1173,133 @@ extern "rust-intrinsic" {
11731173
/// Returns the square root of an `f32`
11741174
///
11751175
/// The stabilized version of this intrinsic is
1176-
/// [`std::f32::sqrt`](../../std/primitive.f32.html#method.sqrt)
1176+
/// [`f32::sqrt`](../../std/primitive.f32.html#method.sqrt)
11771177
pub fn sqrtf32(x: f32) -> f32;
11781178
/// Returns the square root of an `f64`
11791179
///
11801180
/// The stabilized version of this intrinsic is
1181-
/// [`std::f64::sqrt`](../../std/primitive.f64.html#method.sqrt)
1181+
/// [`f64::sqrt`](../../std/primitive.f64.html#method.sqrt)
11821182
pub fn sqrtf64(x: f64) -> f64;
11831183

11841184
/// Raises an `f32` to an integer power.
11851185
///
11861186
/// The stabilized version of this intrinsic is
1187-
/// [`std::f32::powi`](../../std/primitive.f32.html#method.powi)
1187+
/// [`f32::powi`](../../std/primitive.f32.html#method.powi)
11881188
pub fn powif32(a: f32, x: i32) -> f32;
11891189
/// Raises an `f64` to an integer power.
11901190
///
11911191
/// The stabilized version of this intrinsic is
1192-
/// [`std::f64::powi`](../../std/primitive.f64.html#method.powi)
1192+
/// [`f64::powi`](../../std/primitive.f64.html#method.powi)
11931193
pub fn powif64(a: f64, x: i32) -> f64;
11941194

11951195
/// Returns the sine of an `f32`.
11961196
///
11971197
/// The stabilized version of this intrinsic is
1198-
/// [`std::f32::sin`](../../std/primitive.f32.html#method.sin)
1198+
/// [`f32::sin`](../../std/primitive.f32.html#method.sin)
11991199
pub fn sinf32(x: f32) -> f32;
12001200
/// Returns the sine of an `f64`.
12011201
///
12021202
/// The stabilized version of this intrinsic is
1203-
/// [`std::f64::sin`](../../std/primitive.f64.html#method.sin)
1203+
/// [`f64::sin`](../../std/primitive.f64.html#method.sin)
12041204
pub fn sinf64(x: f64) -> f64;
12051205

12061206
/// Returns the cosine of an `f32`.
12071207
///
12081208
/// The stabilized version of this intrinsic is
1209-
/// [`std::f32::cos`](../../std/primitive.f32.html#method.cos)
1209+
/// [`f32::cos`](../../std/primitive.f32.html#method.cos)
12101210
pub fn cosf32(x: f32) -> f32;
12111211
/// Returns the cosine of an `f64`.
12121212
///
12131213
/// The stabilized version of this intrinsic is
1214-
/// [`std::f64::cos`](../../std/primitive.f64.html#method.cos)
1214+
/// [`f64::cos`](../../std/primitive.f64.html#method.cos)
12151215
pub fn cosf64(x: f64) -> f64;
12161216

12171217
/// Raises an `f32` to an `f32` power.
12181218
///
12191219
/// The stabilized version of this intrinsic is
1220-
/// [`std::f32::powf`](../../std/primitive.f32.html#method.powf)
1220+
/// [`f32::powf`](../../std/primitive.f32.html#method.powf)
12211221
pub fn powf32(a: f32, x: f32) -> f32;
12221222
/// Raises an `f64` to an `f64` power.
12231223
///
12241224
/// The stabilized version of this intrinsic is
1225-
/// [`std::f64::powf`](../../std/primitive.f64.html#method.powf)
1225+
/// [`f64::powf`](../../std/primitive.f64.html#method.powf)
12261226
pub fn powf64(a: f64, x: f64) -> f64;
12271227

12281228
/// Returns the exponential of an `f32`.
12291229
///
12301230
/// The stabilized version of this intrinsic is
1231-
/// [`std::f32::exp`](../../std/primitive.f32.html#method.exp)
1231+
/// [`f32::exp`](../../std/primitive.f32.html#method.exp)
12321232
pub fn expf32(x: f32) -> f32;
12331233
/// Returns the exponential of an `f64`.
12341234
///
12351235
/// The stabilized version of this intrinsic is
1236-
/// [`std::f64::exp`](../../std/primitive.f64.html#method.exp)
1236+
/// [`f64::exp`](../../std/primitive.f64.html#method.exp)
12371237
pub fn expf64(x: f64) -> f64;
12381238

12391239
/// Returns 2 raised to the power of an `f32`.
12401240
///
12411241
/// The stabilized version of this intrinsic is
1242-
/// [`std::f32::exp2`](../../std/primitive.f32.html#method.exp2)
1242+
/// [`f32::exp2`](../../std/primitive.f32.html#method.exp2)
12431243
pub fn exp2f32(x: f32) -> f32;
12441244
/// Returns 2 raised to the power of an `f64`.
12451245
///
12461246
/// The stabilized version of this intrinsic is
1247-
/// [`std::f64::exp2`](../../std/primitive.f64.html#method.exp2)
1247+
/// [`f64::exp2`](../../std/primitive.f64.html#method.exp2)
12481248
pub fn exp2f64(x: f64) -> f64;
12491249

12501250
/// Returns the natural logarithm of an `f32`.
12511251
///
12521252
/// The stabilized version of this intrinsic is
1253-
/// [`std::f32::ln`](../../std/primitive.f32.html#method.ln)
1253+
/// [`f32::ln`](../../std/primitive.f32.html#method.ln)
12541254
pub fn logf32(x: f32) -> f32;
12551255
/// Returns the natural logarithm of an `f64`.
12561256
///
12571257
/// The stabilized version of this intrinsic is
1258-
/// [`std::f64::ln`](../../std/primitive.f64.html#method.ln)
1258+
/// [`f64::ln`](../../std/primitive.f64.html#method.ln)
12591259
pub fn logf64(x: f64) -> f64;
12601260

12611261
/// Returns the base 10 logarithm of an `f32`.
12621262
///
12631263
/// The stabilized version of this intrinsic is
1264-
/// [`std::f32::log10`](../../std/primitive.f32.html#method.log10)
1264+
/// [`f32::log10`](../../std/primitive.f32.html#method.log10)
12651265
pub fn log10f32(x: f32) -> f32;
12661266
/// Returns the base 10 logarithm of an `f64`.
12671267
///
12681268
/// The stabilized version of this intrinsic is
1269-
/// [`std::f64::log10`](../../std/primitive.f64.html#method.log10)
1269+
/// [`f64::log10`](../../std/primitive.f64.html#method.log10)
12701270
pub fn log10f64(x: f64) -> f64;
12711271

12721272
/// Returns the base 2 logarithm of an `f32`.
12731273
///
12741274
/// The stabilized version of this intrinsic is
1275-
/// [`std::f32::log2`](../../std/primitive.f32.html#method.log2)
1275+
/// [`f32::log2`](../../std/primitive.f32.html#method.log2)
12761276
pub fn log2f32(x: f32) -> f32;
12771277
/// Returns the base 2 logarithm of an `f64`.
12781278
///
12791279
/// The stabilized version of this intrinsic is
1280-
/// [`std::f64::log2`](../../std/primitive.f64.html#method.log2)
1280+
/// [`f64::log2`](../../std/primitive.f64.html#method.log2)
12811281
pub fn log2f64(x: f64) -> f64;
12821282

12831283
/// Returns `a * b + c` for `f32` values.
12841284
///
12851285
/// The stabilized version of this intrinsic is
1286-
/// [`std::f32::mul_add`](../../std/primitive.f32.html#method.mul_add)
1286+
/// [`f32::mul_add`](../../std/primitive.f32.html#method.mul_add)
12871287
pub fn fmaf32(a: f32, b: f32, c: f32) -> f32;
12881288
/// Returns `a * b + c` for `f64` values.
12891289
///
12901290
/// The stabilized version of this intrinsic is
1291-
/// [`std::f64::mul_add`](../../std/primitive.f64.html#method.mul_add)
1291+
/// [`f64::mul_add`](../../std/primitive.f64.html#method.mul_add)
12921292
pub fn fmaf64(a: f64, b: f64, c: f64) -> f64;
12931293

12941294
/// Returns the absolute value of an `f32`.
12951295
///
12961296
/// The stabilized version of this intrinsic is
1297-
/// [`std::f32::abs`](../../std/primitive.f32.html#method.abs)
1297+
/// [`f32::abs`](../../std/primitive.f32.html#method.abs)
12981298
pub fn fabsf32(x: f32) -> f32;
12991299
/// Returns the absolute value of an `f64`.
13001300
///
13011301
/// The stabilized version of this intrinsic is
1302-
/// [`std::f64::abs`](../../std/primitive.f64.html#method.abs)
1302+
/// [`f64::abs`](../../std/primitive.f64.html#method.abs)
13031303
pub fn fabsf64(x: f64) -> f64;
13041304

13051305
/// Returns the minimum of two `f32` values.
@@ -1326,45 +1326,45 @@ extern "rust-intrinsic" {
13261326
/// Copies the sign from `y` to `x` for `f32` values.
13271327
///
13281328
/// The stabilized version of this intrinsic is
1329-
/// [`std::f32::copysign`](../../std/primitive.f32.html#method.copysign)
1329+
/// [`f32::copysign`](../../std/primitive.f32.html#method.copysign)
13301330
pub fn copysignf32(x: f32, y: f32) -> f32;
13311331
/// Copies the sign from `y` to `x` for `f64` values.
13321332
///
13331333
/// The stabilized version of this intrinsic is
1334-
/// [`std::f64::copysign`](../../std/primitive.f64.html#method.copysign)
1334+
/// [`f64::copysign`](../../std/primitive.f64.html#method.copysign)
13351335
pub fn copysignf64(x: f64, y: f64) -> f64;
13361336

13371337
/// Returns the largest integer less than or equal to an `f32`.
13381338
///
13391339
/// The stabilized version of this intrinsic is
1340-
/// [`std::f32::floor`](../../std/primitive.f32.html#method.floor)
1340+
/// [`f32::floor`](../../std/primitive.f32.html#method.floor)
13411341
pub fn floorf32(x: f32) -> f32;
13421342
/// Returns the largest integer less than or equal to an `f64`.
13431343
///
13441344
/// The stabilized version of this intrinsic is
1345-
/// [`std::f64::floor`](../../std/primitive.f64.html#method.floor)
1345+
/// [`f64::floor`](../../std/primitive.f64.html#method.floor)
13461346
pub fn floorf64(x: f64) -> f64;
13471347

13481348
/// Returns the smallest integer greater than or equal to an `f32`.
13491349
///
13501350
/// The stabilized version of this intrinsic is
1351-
/// [`std::f32::ceil`](../../std/primitive.f32.html#method.ceil)
1351+
/// [`f32::ceil`](../../std/primitive.f32.html#method.ceil)
13521352
pub fn ceilf32(x: f32) -> f32;
13531353
/// Returns the smallest integer greater than or equal to an `f64`.
13541354
///
13551355
/// The stabilized version of this intrinsic is
1356-
/// [`std::f64::ceil`](../../std/primitive.f64.html#method.ceil)
1356+
/// [`f64::ceil`](../../std/primitive.f64.html#method.ceil)
13571357
pub fn ceilf64(x: f64) -> f64;
13581358

13591359
/// Returns the integer part of an `f32`.
13601360
///
13611361
/// The stabilized version of this intrinsic is
1362-
/// [`std::f32::trunc`](../../std/primitive.f32.html#method.trunc)
1362+
/// [`f32::trunc`](../../std/primitive.f32.html#method.trunc)
13631363
pub fn truncf32(x: f32) -> f32;
13641364
/// Returns the integer part of an `f64`.
13651365
///
13661366
/// The stabilized version of this intrinsic is
1367-
/// [`std::f64::trunc`](../../std/primitive.f64.html#method.trunc)
1367+
/// [`f64::trunc`](../../std/primitive.f64.html#method.trunc)
13681368
pub fn truncf64(x: f64) -> f64;
13691369

13701370
/// Returns the nearest integer to an `f32`. May raise an inexact floating-point exception
@@ -1386,12 +1386,12 @@ extern "rust-intrinsic" {
13861386
/// Returns the nearest integer to an `f32`. Rounds half-way cases away from zero.
13871387
///
13881388
/// The stabilized version of this intrinsic is
1389-
/// [`std::f32::round`](../../std/primitive.f32.html#method.round)
1389+
/// [`f32::round`](../../std/primitive.f32.html#method.round)
13901390
pub fn roundf32(x: f32) -> f32;
13911391
/// Returns the nearest integer to an `f64`. Rounds half-way cases away from zero.
13921392
///
13931393
/// The stabilized version of this intrinsic is
1394-
/// [`std::f64::round`](../../std/primitive.f64.html#method.round)
1394+
/// [`f64::round`](../../std/primitive.f64.html#method.round)
13951395
pub fn roundf64(x: f64) -> f64;
13961396

13971397
/// Float addition that allows optimizations based on algebraic rules.

library/core/tests/num/nan.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#[test]
22
fn test_nan() {
3-
use core::f64;
43
let x = "NaN".to_string();
54
assert_eq!(format!("{}", f64::NAN), x);
65
assert_eq!(format!("{:e}", f64::NAN), x);

src/test/codegen/enum-discriminant-value.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
#[repr(i64)]
66
pub enum I64 {
7-
I64Min = std::i64::MIN,
8-
I64Max = std::i64::MAX,
7+
I64Min = i64::MIN,
8+
I64Max = i64::MAX,
99
}
1010

1111
#[repr(u64)]
1212
pub enum U64 {
13-
U64Min = std::u64::MIN,
14-
U64Max = std::u64::MAX,
13+
U64Min = u64::MIN,
14+
U64Max = u64::MAX,
1515
}
1616

1717
fn main() {

src/test/codegen/issue-56927.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// compile-flags: -C no-prepopulate-passes
22

33
#![crate_type="rlib"]
4-
use std::usize;
54

65
#[repr(align(16))]
76
pub struct S {

src/test/compile-fail/consts/issue-55878.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
// error-pattern: are too big for the current architecture
55
fn main() {
6-
println!("Size: {}", std::mem::size_of::<[u8; std::u64::MAX as usize]>());
6+
println!("Size: {}", std::mem::size_of::<[u8; u64::MAX as usize]>());
77
}

src/test/rustdoc/reexport-check.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ extern crate reexport_check;
66
// @!has 'foo/index.html' '//code' 'pub use self::i32;'
77
// @has 'foo/index.html' '//tr[@class="module-item"]' 'i32'
88
// @has 'foo/i32/index.html'
9+
#[allow(deprecated, deprecated_in_future)]
910
pub use std::i32;
1011
// @!has 'foo/index.html' '//code' 'pub use self::string::String;'
1112
// @has 'foo/index.html' '//tr[@class="module-item"]' 'String'

src/test/rustdoc/show-const-contents.rs

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ pub const MY_TYPE_WITH_STR: MyTypeWithStr = MyTypeWithStr("show this");
5252
pub use std::f32::consts::PI;
5353

5454
// @has show_const_contents/constant.MAX.html '= i32::MAX; // 2_147_483_647i32'
55+
#[allow(deprecated, deprecated_in_future)]
5556
pub use std::i32::MAX;
5657

5758
macro_rules! int_module {

src/test/ui/array-slice-vec/bounds-check-no-overflow.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// error-pattern:index out of bounds
33
// ignore-emscripten no processes
44

5-
use std::usize;
65
use std::mem::size_of;
76

87
fn main() {

src/test/ui/associated-consts/issue-69020-assoc-const-arith-overflow.noopt.stderr

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
11
error: this arithmetic operation will overflow
2-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:29:22
2+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:27:22
33
|
44
LL | const NEG: i32 = -i32::MIN + T::NEG;
55
| ^^^^^^^^^ attempt to negate `i32::MIN`, which would overflow
66
|
77
= note: `#[deny(arithmetic_overflow)]` on by default
88

99
error: this arithmetic operation will overflow
10-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:31:35
10+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:29:35
1111
|
1212
LL | const NEG_REV: i32 = T::NEG + (-i32::MIN);
1313
| ^^^^^^^^^^^ attempt to negate `i32::MIN`, which would overflow
1414

1515
error: this arithmetic operation will overflow
16-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:34:22
16+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:32:22
1717
|
1818
LL | const ADD: i32 = (i32::MAX+1) + T::ADD;
1919
| ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32`, which would overflow
2020

2121
error: this arithmetic operation will overflow
22-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:36:36
22+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:34:36
2323
|
2424
LL | const ADD_REV: i32 = T::ADD + (i32::MAX+1);
2525
| ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32`, which would overflow
2626

2727
error: this operation will panic at runtime
28-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:39:22
28+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:37:22
2929
|
3030
LL | const DIV: i32 = (1/0) + T::DIV;
3131
| ^^^^^ attempt to divide `1_i32` by zero
3232
|
3333
= note: `#[deny(unconditional_panic)]` on by default
3434

3535
error: this operation will panic at runtime
36-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:41:35
36+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:39:35
3737
|
3838
LL | const DIV_REV: i32 = T::DIV + (1/0);
3939
| ^^^^^ attempt to divide `1_i32` by zero
4040

4141
error: this operation will panic at runtime
42-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:44:22
42+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:42:22
4343
|
4444
LL | const OOB: i32 = [1][1] + T::OOB;
4545
| ^^^^^^ index out of bounds: the length is 1 but the index is 1
4646

4747
error: this operation will panic at runtime
48-
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:46:35
48+
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:44:35
4949
|
5050
LL | const OOB_REV: i32 = T::OOB + [1][1];
5151
| ^^^^^^ index out of bounds: the length is 1 but the index is 1

0 commit comments

Comments
 (0)