diff --git a/src/function_body.rs b/src/function_body.rs index ddebd836df..b414da0260 100644 --- a/src/function_body.rs +++ b/src/function_body.rs @@ -258,8 +258,9 @@ pub fn translate( // TODO: Merge `End`s so that we can // A) Move values directly into RAX when returning from deeply-nested blocks. // B) Avoid restoring locals when not necessary. - // This doesn't require lookahead but it does require turning this loop into a kind - // of state machine. + // + // This doesn't require lookahead but it does require turning this loop into + // a kind of state machine. let control_frame = control_frames.pop().expect("control stack is never empty"); let arity = control_frame.arity();