From 623e42aa7be8aa030093b204491d94f3c297d312 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 10 Jan 2018 11:34:53 -0800 Subject: Optimize out memory and table when possible (#1352) We can remove the memory/table (itself, or an import if imported) if they are not used. This is pretty minor on a large wasm file, but when reading small wasts it's very noticeable to have an unused memory and table all the time. --- test/reduce/destructive.wast.txt | 1 - test/reduce/simple.wast.txt | 1 - 2 files changed, 2 deletions(-) (limited to 'test/reduce') diff --git a/test/reduce/destructive.wast.txt b/test/reduce/destructive.wast.txt index d58f0ed7a..05a3d3118 100644 --- a/test/reduce/destructive.wast.txt +++ b/test/reduce/destructive.wast.txt @@ -1,6 +1,5 @@ (module (type $0 (func (param i32) (result i32))) - (memory $0 0) (export "x" (func $0)) (func $0 (; 0 ;) (type $0) (param $var$0 i32) (result i32) (i32.const 100) diff --git a/test/reduce/simple.wast.txt b/test/reduce/simple.wast.txt index 9c162a7a6..adfd5ff04 100644 --- a/test/reduce/simple.wast.txt +++ b/test/reduce/simple.wast.txt @@ -1,6 +1,5 @@ (module (type $0 (func (result i32))) - (memory $0 0) (export "x" (func $0)) (func $0 (; 0 ;) (type $0) (result i32) (i32.const 5678) -- cgit v1.2.3