From c52cf1493a054af1d18c211385a4fce52fffa761 Mon Sep 17 00:00:00 2001 From: Jef Date: Wed, 19 Dec 2018 14:46:32 +0100 Subject: [PATCH] Reformat a comment --- src/function_body.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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();