diff options
Diffstat (limited to 'test/binaryen.js/zero-filled-memory.js.txt')
-rw-r--r-- | test/binaryen.js/zero-filled-memory.js.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/binaryen.js/zero-filled-memory.js.txt b/test/binaryen.js/zero-filled-memory.js.txt index 10f7a3fbe..dec414e3b 100644 --- a/test/binaryen.js/zero-filled-memory.js.txt +++ b/test/binaryen.js/zero-filled-memory.js.txt @@ -8,14 +8,14 @@ === unoptimized === (module (import "env" "memory" (memory $0 1)) - (data (i32.const 1024) "\00\00\00\00") + (data $0 (i32.const 1024) "\00\00\00\00") (export "memory" (memory $0)) ) === optimized, zeroFilledMemory=false === (module (import "env" "memory" (memory $0 1)) - (data (i32.const 1024) "\00\00\00\00") + (data $0 (i32.const 1024) "\00\00\00\00") (export "memory" (memory $0)) ) |