38
38
//! which do not trigger a panic can be assured that this function is never
39
39
//! called. The `lang` attribute is called `eh_personality`.
40
40
41
- // Since libcore defines many fundamental lang items, all tests live in a
41
+ // Since core defines many fundamental lang items, all tests live in a
42
42
// separate crate, libcoretest, to avoid bizarre issues.
43
43
//
44
44
// Here we explicitly #[cfg]-out this whole crate when testing. If we don't do
45
45
// this, both the generated test artifact and the linked libtest (which
46
- // transitively includes libcore ) will both define the same set of lang items,
46
+ // transitively includes core ) will both define the same set of lang items,
47
47
// and this will cause the E0152 "found duplicate lang item" error. See
48
48
// discussion in #50466 for details.
49
49
//
50
50
// This cfg won't affect doc tests.
51
51
#![ cfg( not( test) ) ]
52
- // To run libcore tests without x.py without ending up with two copies of libcore , Miri needs to be
52
+ // To run core tests without x.py without ending up with two copies of core , Miri needs to be
53
53
// able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>.
54
54
// rustc itself never sets the feature, so this line has no affect there.
55
55
#![ cfg( any( not( feature = "miri-test-libstd" ) , test, doctest) ) ]
@@ -311,7 +311,7 @@ pub mod f64;
311
311
#[ macro_use]
312
312
pub mod num;
313
313
314
- /* The libcore prelude, not as all-encompassing as the libstd prelude */
314
+ /* The core prelude, not as all-encompassing as the std prelude */
315
315
316
316
pub mod prelude;
317
317
@@ -378,12 +378,12 @@ mod const_closure;
378
378
#[ stable( feature = "core_primitive" , since = "1.43.0" ) ]
379
379
pub mod primitive;
380
380
381
- // Pull in the `core_arch` crate directly into libcore . The contents of
381
+ // Pull in the `core_arch` crate directly into core . The contents of
382
382
// `core_arch` are in a different repository: rust-lang/stdarch.
383
383
//
384
- // `core_arch` depends on libcore , but the contents of this module are
384
+ // `core_arch` depends on core , but the contents of this module are
385
385
// set up in such a way that directly pulling it here works such that the
386
- // crate uses the this crate as its libcore .
386
+ // crate uses the this crate as its core .
387
387
#[ path = "../../stdarch/crates/core_arch/src/mod.rs" ]
388
388
#[ allow(
389
389
missing_docs,
@@ -402,12 +402,12 @@ mod core_arch;
402
402
#[ stable( feature = "simd_arch" , since = "1.27.0" ) ]
403
403
pub mod arch;
404
404
405
- // Pull in the `core_simd` crate directly into libcore . The contents of
405
+ // Pull in the `core_simd` crate directly into core . The contents of
406
406
// `core_simd` are in a different repository: rust-lang/portable-simd.
407
407
//
408
- // `core_simd` depends on libcore , but the contents of this module are
408
+ // `core_simd` depends on core , but the contents of this module are
409
409
// set up in such a way that directly pulling it here works such that the
410
- // crate uses this crate as its libcore .
410
+ // crate uses this crate as its core .
411
411
#[ path = "../../portable-simd/crates/core_simd/src/mod.rs" ]
412
412
#[ allow( missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn, unused_unsafe) ]
413
413
#[ allow( rustdoc:: bare_urls) ]
0 commit comments