Skip to content

Commit

Permalink
Notify the user that term. does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Salzberg committed Aug 26, 2024
1 parent 0c17fdd commit b5a95fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ impl<'tcx, 'cache> InstrumentationData<'tcx, 'cache> {
pub fn instruction_actions(&self) -> Vec<Action> {
let mut visitor = CollectActions::new(self.body.locals());
match self.min_processed {
SourceInstruction::Terminator { .. } => { /* not yet handled */ }
SourceInstruction::Terminator { .. } => { eprintln!("Terminators (calls, gotos) do not yet update the stacked borrows state. ") }
SourceInstruction::Statement { idx, bb } => {
visitor.visit_statement(&self.body.blocks()[bb].statements[idx]);
}
Expand Down

0 comments on commit b5a95fc

Please sign in to comment.