Rollup merge of #152806 - RalfJung:interpret-typo, r=Kivooeo

interpret: fix comment typo

Pointed out in https://github.com/rust-lang/rust/pull/152756#pullrequestreview-3819458236 after that PR already had been rolled up.
This commit is contained in:
Jonathan Brouwer 2026-02-18 18:55:23 +01:00 committed by GitHub
commit d56ef16097
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -647,8 +647,9 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {
}
} else {
// This is not CTFE, so it's Miri with recursive checking.
// FIXME: should we also `UnsafeCell` behind shared references? Currently that is not
// needed since validation reads bypass Stacked Borrows and data race checks.
// FIXME: should we skip `UnsafeCell` behind shared references? Currently that is
// not needed since validation reads bypass Stacked Borrows and data race checks,
// but is that really coherent?
}
let path = &self.path;
ref_tracking.track(place, || {