diff options
author | Abbas Mashayekh <martianboy2005@gmail.com> | 2021-04-21 03:41:32 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 16:11:32 -0700 |
commit | 304658d67102d3ddd5aa8ea59bcc94402d8338b8 (patch) | |
tree | 7404815766468730b1338967e61afcdb5701f69c /test/lld/main_module_table_4.wat.out | |
parent | 1afe9d4374f6920981be132e1538f63b8f053c02 (diff) | |
download | binaryen-304658d67102d3ddd5aa8ea59bcc94402d8338b8.tar.gz binaryen-304658d67102d3ddd5aa8ea59bcc94402d8338b8.tar.bz2 binaryen-304658d67102d3ddd5aa8ea59bcc94402d8338b8.zip |
Fix element segment ordering in Print (#3818)
We used to print active element segments right after corresponding
tables, and passive segments came after those. We didn't print internal
segment names, and empty segments weren't being printed at all. This
meant that there was no way for instructions to refer to those table
segments after round tripping.
This will fix those issues by printing segments in the order they were
defined, including segment names when necessary and not omitting
empty segments anymore.
Diffstat (limited to 'test/lld/main_module_table_4.wat.out')
-rw-r--r-- | test/lld/main_module_table_4.wat.out | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lld/main_module_table_4.wat.out b/test/lld/main_module_table_4.wat.out index c8c5c2099..2aba23d77 100644 --- a/test/lld/main_module_table_4.wat.out +++ b/test/lld/main_module_table_4.wat.out @@ -5,6 +5,7 @@ (import "GOT.func" "__stdio_write" (global $gimport$9 (mut i32))) (import "env" "__table_base" (global $tb i32)) (global $global i32 (i32.const 42)) + (elem (global.get $tb)) (export "__stdio_write" (func $__stdio_write)) (export "__data_end" (global $global)) (func $__stdio_write |