File tree 1 file changed +5
-5
lines changed
src/librustc_mir/dataflow/framework 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 79
79
self . state . contains ( elem)
80
80
}
81
81
82
- /// Resets the cursor to hold the dataflow state for the given basic block at fixpoint .
82
+ /// Resets the cursor to hold the entry set for the given basic block.
83
83
///
84
84
/// For forward dataflow analyses, this is the dataflow state prior to the first statement.
85
85
///
90
90
self . state_needs_reset = false ;
91
91
}
92
92
93
- /// Resets the cursor to hold the state at the entry to the given block.
93
+ /// Resets the cursor to hold the state prior to the first statement in a basic block.
94
94
///
95
- /// For forward analyses, this is the block's state at fixpoint .
95
+ /// For forward analyses, this is the entry set for the given block .
96
96
///
97
97
/// For backward analyses, this is the state that will be propagated to its
98
98
/// predecessors (ignoring edge-specific effects).
@@ -104,9 +104,9 @@ where
104
104
}
105
105
}
106
106
107
- /// Resets the cursor to hold the state at the exit of the given block.
107
+ /// Resets the cursor to hold the state after the terminator in a basic block.
108
108
///
109
- /// For backward analyses, this is the block's state at fixpoint .
109
+ /// For backward analyses, this is the entry set for the given block .
110
110
///
111
111
/// For forward analyses, this is the state that will be propagated to its
112
112
/// successors (ignoring edge-specific effects).
You can’t perform that action at this time.
0 commit comments