diff options
author | Yuhan Deng <31569419+yhdengh@users.noreply.github.com> | 2022-02-17 10:58:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 18:58:07 +0000 |
commit | a8f401d53c61115be23271579541078fb227d78a (patch) | |
tree | 4897c8108fa41d8112997cdda1b843016dd526d2 /test/binary | |
parent | 407c5f65d172bba3d8b62579468d9c241556ef4b (diff) | |
download | wabt-a8f401d53c61115be23271579541078fb227d78a.tar.gz wabt-a8f401d53c61115be23271579541078fb227d78a.tar.bz2 wabt-a8f401d53c61115be23271579541078fb227d78a.zip |
Added support for multi-memory in apply-names (#1810)
Diffstat (limited to 'test/binary')
-rw-r--r-- | test/binary/names.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/binary/names.txt b/test/binary/names.txt index d9d4724e..497606c3 100644 --- a/test/binary/names.txt +++ b/test/binary/names.txt @@ -107,8 +107,8 @@ section("linking") { (export "F1_EXPORT" (func $F1_NS)) (export "F2_EXPORT" (func $F2_SYM)) (export "F3_EXPORT" (func $F3_EXPORT)) - (export "G0_EXPORT" (global 0)) - (export "G1_EXPORT" (global 1)) + (export "G0_EXPORT" (global $G0_SYM)) + (export "G1_EXPORT" (global $G1_EXPORT)) (data $D0_SYM (i32.const 0) "foo") (data $D1_SYM (i32.const 10) "bar")) ;;; STDOUT ;;) |