Skip to content

Commit b4a4645

Browse files
committed
static_mut_refs: use raw pointers to remove the remaining FIXME
1 parent 85b884b commit b4a4645

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

compiler/rustc_codegen_cranelift/example/mini_core_hello_world.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
#![feature(no_core, lang_items, never_type, linkage, extern_types, thread_local, repr_simd)]
1+
#![feature(
2+
no_core,
3+
lang_items,
4+
never_type,
5+
linkage,
6+
extern_types,
7+
thread_local,
8+
repr_simd,
9+
raw_ref_op
10+
)]
211
#![no_core]
312
#![allow(dead_code, non_camel_case_types, internal_features)]
413

@@ -112,9 +121,7 @@ fn start<T: Termination + 'static>(
112121

113122
static mut NUM: u8 = 6 * 7;
114123

115-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
116-
#[allow(static_mut_refs)]
117-
static NUM_REF: &'static u8 = unsafe { &NUM };
124+
static NUM_REF: &'static u8 = unsafe { &*&raw const NUM };
118125

119126
unsafe fn zeroed<T>() -> T {
120127
let mut uninit = MaybeUninit { uninit: () };

compiler/rustc_codegen_gcc/example/mini_core_hello_world.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#![feature(
44
no_core, unboxed_closures, start, lang_items, never_type, linkage,
5-
extern_types, thread_local
5+
extern_types, thread_local, raw_ref_op
66
)]
77
#![no_core]
88
#![allow(dead_code, internal_features, non_camel_case_types)]
@@ -99,9 +99,7 @@ fn start<T: Termination + 'static>(
9999

100100
static mut NUM: u8 = 6 * 7;
101101

102-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
103-
#[allow(static_mut_refs)]
104-
static NUM_REF: &'static u8 = unsafe { &NUM };
102+
static NUM_REF: &'static u8 = unsafe { &* &raw const NUM };
105103

106104
macro_rules! assert {
107105
($e:expr) => {

library/std/src/sys/thread_local/static_local.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ pub macro thread_local_inner {
1111
(@key $t:ty, const $init:expr) => {{
1212
#[inline] // see comments below
1313
#[deny(unsafe_op_in_unsafe_fn)]
14-
// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_refs` lint
15-
#[allow(static_mut_refs)]
1614
unsafe fn __getit(
1715
_init: $crate::option::Option<&mut $crate::option::Option<$t>>,
1816
) -> $crate::option::Option<&'static $t> {
@@ -25,7 +23,8 @@ pub macro thread_local_inner {
2523
// FIXME(#84224) this should come after the `target_thread_local`
2624
// block.
2725
static mut VAL: $t = INIT_EXPR;
28-
unsafe { $crate::option::Option::Some(&VAL) }
26+
// SAFETY: we only ever create shared references, so there's no mutable aliasing.
27+
unsafe { $crate::option::Option::Some(&*$crate::ptr::addr_of!(VAL)) }
2928
}
3029

3130
unsafe {

0 commit comments

Comments
 (0)