From 8a228fd7b6521bff7e2913c30f4ca04e9863f470 Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sun, 14 Oct 2018 11:50:05 +0200 Subject: [PATCH] Add comment about step being used by priroda --- src/librustc_mir/interpret/step.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/librustc_mir/interpret/step.rs b/src/librustc_mir/interpret/step.rs index 2f05af7fc29..d15867eacdd 100644 --- a/src/librustc_mir/interpret/step.rs +++ b/src/librustc_mir/interpret/step.rs @@ -52,6 +52,8 @@ pub fn run(&mut self) -> EvalResult<'tcx> { } /// Returns true as long as there are more things to do. + /// + /// This is used by [priroda](https://github.com/oli-obk/priroda) pub fn step(&mut self) -> EvalResult<'tcx, bool> { if self.stack.is_empty() { return Ok(false); -- 2.44.0