From 3aef7630464a032261cc9b22ef909550a4ea28d6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 3 Jan 2019 15:50:04 -0800 Subject: [PATCH] Delete an unneeded comment. --- lib/runtime/src/instance.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/runtime/src/instance.rs b/lib/runtime/src/instance.rs index 67f288356a..a55399a932 100644 --- a/lib/runtime/src/instance.rs +++ b/lib/runtime/src/instance.rs @@ -558,10 +558,6 @@ impl Instance { initialize_memories(&*module, contents, data_initializers)?; initialize_globals(&*module, contents); - // Rather than writing inline assembly to jump to the code region, we use the fact that - // the Rust ABI for calling a function with no arguments and no return values matches the - // one of the generated code. Thanks to this, we can transmute the code region into a - // first-class Rust function and call it. // Ensure that our signal handlers are ready for action. // TODO: Move these calls out of `Instance`. wasmtime_init_eager();