From 56c6ca407f3232ede398b78e7f284f6ed80c9f00 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Tue, 11 Oct 2016 09:15:05 -0700 Subject: Don't create table sections for imported tables (#756) Previously the Print pass searched the imports for a table import and skipped printing a local table declaration if found. Instead this refactors to make importation explicit, and also create importation records (previously we were inconsistent about whether such records were created in the IR depending on the wast syntax). --- test/table-import.wast | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/table-import.wast (limited to 'test/table-import.wast') diff --git a/test/table-import.wast b/test/table-import.wast new file mode 100644 index 000000000..6d40941e2 --- /dev/null +++ b/test/table-import.wast @@ -0,0 +1,9 @@ +(module + (type $0 (func)) + (import "env" "table" (table 1 1 anyfunc)) + (elem (i32.const 0) $foo) + (memory $0 0) + (func $foo (type $0) + (nop) + ) +) -- cgit v1.2.3