Skip to content

Commit b9cdbc6

Browse files
committed
rename core_intrinsics feature to core_intrinsics_internal so that it is considered 'internal'
1 parent d1583eb commit b9cdbc6

File tree

221 files changed

+243
-243
lines changed

Some content is hidden

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

221 files changed

+243
-243
lines changed

compiler/rustc_arena/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
)]
1414
#![doc(rust_logo)]
1515
#![feature(rustdoc_internals)]
16-
#![feature(core_intrinsics)]
16+
#![feature(core_intrinsics_internal)]
1717
#![feature(dropck_eyepatch)]
1818
#![feature(new_uninit)]
1919
#![feature(maybe_uninit_slice)]

compiler/rustc_builtin_macros/src/deriving/generic/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ impl<'a> MethodDef<'a> {
11271127
/// is equivalent to:
11281128
///
11291129
/// ```
1130-
/// #![feature(core_intrinsics)]
1130+
/// #![feature(core_intrinsics_internal)]
11311131
/// enum A {
11321132
/// A1,
11331133
/// A2(i32)

compiler/rustc_codegen_cranelift/example/alloc_example.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(start, core_intrinsics, alloc_error_handler, lang_items)]
1+
#![feature(start, core_intrinsics_internal, alloc_error_handler, lang_items)]
22
#![no_std]
33

44
extern crate alloc;

compiler/rustc_codegen_cranelift/example/mod_bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(start, core_intrinsics, lang_items)]
1+
#![feature(start, core_intrinsics_internal, lang_items)]
22
#![no_std]
33

44
#[cfg_attr(unix, link(name = "c"))]

compiler/rustc_codegen_cranelift/example/std_example.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![feature(
2-
core_intrinsics,
2+
core_intrinsics_internal,
33
coroutines,
44
coroutine_trait,
55
is_sorted,

compiler/rustc_codegen_gcc/example/alloc_example.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(start, core_intrinsics, alloc_error_handler, lang_items)]
1+
#![feature(start, core_intrinsics_internal, alloc_error_handler, lang_items)]
22
#![no_std]
33
#![allow(internal_features)]
44

compiler/rustc_codegen_gcc/example/mod_bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(start, core_intrinsics, lang_items)]
1+
#![feature(start, core_intrinsics_internal, lang_items)]
22
#![no_std]
33
#![allow(internal_features)]
44

compiler/rustc_codegen_gcc/example/std_example.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(core_intrinsics, coroutines, coroutine_trait, is_sorted)]
1+
#![feature(core_intrinsics_internal, coroutines, coroutine_trait, is_sorted)]
22

33
#[cfg(feature="master")]
44
#[cfg(target_arch="x86_64")]

compiler/rustc_data_structures/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#![feature(auto_traits)]
2121
#![feature(cell_leak)]
2222
#![feature(cfg_match)]
23-
#![feature(core_intrinsics)]
23+
#![feature(core_intrinsics_internal)]
2424
#![feature(extend_one)]
2525
#![feature(hash_raw_entry)]
2626
#![feature(hasher_prefixfree_extras)]

compiler/rustc_middle/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#![feature(array_windows)]
3030
#![feature(assert_matches)]
3131
#![feature(box_patterns)]
32-
#![feature(core_intrinsics)]
32+
#![feature(core_intrinsics_internal)]
3333
#![feature(discriminant_kind)]
3434
#![feature(exhaustive_patterns)]
3535
#![feature(coroutines)]

0 commit comments

Comments
 (0)