Reformat a comment

This commit is contained in:
Jef
2018-12-19 14:46:32 +01:00
parent f91b9072de
commit c52cf1493a

View File

@@ -258,8 +258,9 @@ pub fn translate(
// TODO: Merge `End`s so that we can // TODO: Merge `End`s so that we can
// A) Move values directly into RAX when returning from deeply-nested blocks. // A) Move values directly into RAX when returning from deeply-nested blocks.
// B) Avoid restoring locals when not necessary. // 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 control_frame = control_frames.pop().expect("control stack is never empty");
let arity = control_frame.arity(); let arity = control_frame.arity();