We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3065273 commit 5dd01c3Copy full SHA for 5dd01c3
src/interpreter/mod.rs
@@ -82,10 +82,10 @@ pub struct Frame<'tcx> {
82
/// Before being initialized, a local is simply marked as None.
83
pub locals: Vec<Option<Value>>,
84
85
- /// Temporaries introduced to save stackframes
+ /// Temporary allocations introduced to save stackframes
86
/// This is pure interpreter magic and has nothing to do with how rustc does it
87
/// An example is calling an FnMut closure that has been converted to a FnOnce closure
88
- /// If they are Value::ByRef, their memory will be freed when the stackframe finishes
+ /// The memory will be freed when the stackframe finishes
89
pub interpreter_temporaries: Vec<Pointer>,
90
91
////////////////////////////////////////////////////////////////////////////////
0 commit comments