From 165b19813067140e3f594740affda804dbdb0564 Mon Sep 17 00:00:00 2001 From: Henry Date: Sat, 25 Apr 2026 18:30:53 +0200 Subject: chore: add global bin op and acc superinstructions, cleanup executor Signed-off-by: Henry --- crates/parser/src/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'crates/parser/src/lib.rs') diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index 684e79b..4eda84b 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -55,11 +55,7 @@ pub struct ParserOptions { impl Default for ParserOptions { fn default() -> Self { - Self { - optimize_local_memory_allocation: true, - optimize_rewrite: true, - optimize_remove_nop: true, - } + Self { optimize_local_memory_allocation: true, optimize_rewrite: true, optimize_remove_nop: true } } } @@ -96,7 +92,6 @@ impl ParserOptions { pub const fn optimize_remove_nop(&self) -> bool { self.optimize_remove_nop } - } /// A WebAssembly parser -- cgit v1.3.1