explain a good reason for why LocalValue does not store the type of the local
This commit is contained in:
parent
df0295f071
commit
a1b03e3067
@ -173,6 +173,9 @@ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Current value of a local variable
|
/// Current value of a local variable
|
||||||
|
///
|
||||||
|
/// This does not store the type of the local; the type is given by `body.local_decls` and can never
|
||||||
|
/// change, so by not storing here we avoid having to maintain that as an invariant.
|
||||||
#[derive(Copy, Clone, Debug)] // Miri debug-prints these
|
#[derive(Copy, Clone, Debug)] // Miri debug-prints these
|
||||||
pub(super) enum LocalValue<Prov: Provenance = AllocId> {
|
pub(super) enum LocalValue<Prov: Provenance = AllocId> {
|
||||||
/// This local is not currently alive, and cannot be used at all.
|
/// This local is not currently alive, and cannot be used at all.
|
||||||
|
Loading…
Reference in New Issue
Block a user