Skip to content

Commit d7d2185

Browse files
committedApr 28, 2020
Add inlining.
1 parent e333277 commit d7d2185

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/librustc_query_system/query/caches.rs

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ impl<K: Eq + Hash, V: Clone> QueryStorage for DefaultCache<K, V> {
8080
type Value = V;
8181
type Stored = V;
8282

83+
#[inline]
8384
fn store_nocache(&self, value: Self::Value) -> Self::Stored {
8485
// We have no dedicated storage
8586
value
@@ -157,6 +158,7 @@ impl<'tcx, K: Eq + Hash, V: 'tcx> QueryStorage for ArenaCache<'tcx, K, V> {
157158
type Value = V;
158159
type Stored = &'tcx V;
159160

161+
#[inline]
160162
fn store_nocache(&self, value: Self::Value) -> Self::Stored {
161163
let value = self.arena.alloc((value, DepNodeIndex::INVALID));
162164
let value = unsafe { &*(&value.0 as *const _) };

0 commit comments

Comments
 (0)
Please sign in to comment.