Skip to content

Commit e4ab4ee

Browse files
oli-obkRalfJung
andcommitted
Update src/librustc_mir/interpret/memory.rs
Co-Authored-By: Ralf Jung <[email protected]>
1 parent af44cdf commit e4ab4ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc_mir/interpret/memory.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,9 @@ impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> Memory<'mir, 'tcx, M> {
404404
// We may be reading from a static.
405405
// In order to ensure that `static FOO: Type = FOO;` causes a cycle error
406406
// instead of magically pulling *any* ZST value from the ether, we need to
407-
// trigger a read here.
407+
// actually access the referenced allocation. The caller is likely
408+
// to short-circuit on `None`, so we trigger the access here to
409+
// make sure it happens.
408410
self.get_raw(ptr.alloc_id)?;
409411
None
410412
} else {

0 commit comments

Comments
 (0)