diff --git a/src/shims/tls.rs b/src/shims/tls.rs index d2190bd969e..e90ace948b7 100644 --- a/src/shims/tls.rs +++ b/src/shims/tls.rs @@ -18,17 +18,17 @@ pub struct TlsEntry<'tcx> { /// The data for this key. None is used to represent NULL. /// (We normalize this early to avoid having to do a NULL-ptr-test each time we access the data.) /// Will eventually become a map from thread IDs to `Scalar`s, if we ever support more than one thread. - pub(crate) data: Option>, - pub(crate) dtor: Option>, + data: Option>, + dtor: Option>, } #[derive(Debug)] pub struct TlsData<'tcx> { /// The Key to use for the next thread-local allocation. - pub(crate) next_key: TlsKey, + next_key: TlsKey, /// pthreads-style thread-local storage. - pub(crate) keys: BTreeMap>, + keys: BTreeMap>, } impl<'tcx> Default for TlsData<'tcx> {