From 5eee15ab023b16d0b24ca9453572f0565d98469a Mon Sep 17 00:00:00 2001 From: Jef Date: Wed, 19 Dec 2018 20:27:16 +0000 Subject: [PATCH] Remove outdated comment --- src/backend.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/backend.rs b/src/backend.rs index fec9c5a339..09d7140648 100644 --- a/src/backend.rs +++ b/src/backend.rs @@ -499,11 +499,6 @@ pub fn end_block(ctx: &mut Context, parent_block_state: BlockState) { } } -// TODO: We should be able to have arbitrary return registers. For blocks with multiple -// return points we can just choose the first one that we encounter and then always -// use that one. This will mean that `(block ...)` is no less efficient than `...` -// alone, and you only pay for the shuffling of registers in the case that you use -// `BrIf` or similar. fn push_return_value(ctx: &mut Context, arity: u32) { if arity == 0 { return;