diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-11-01 13:34:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 13:34:53 -0700 |
commit | 77c66027f0dcbd7160f78c5de4943372836ab142 (patch) | |
tree | 582c3f937247c14b773e9364d5a901d9db9bcfdd /test/ctor-eval/indirect-call3.wast.out | |
parent | 7d3ddd09d5f68945160cda3f3749a217a13928bf (diff) | |
download | binaryen-77c66027f0dcbd7160f78c5de4943372836ab142.tar.gz binaryen-77c66027f0dcbd7160f78c5de4943372836ab142.tar.bz2 binaryen-77c66027f0dcbd7160f78c5de4943372836ab142.zip |
Emit imports before defined things in text format (#1715)
That is the correct order in the text format, wabt errors otherwise.
See AssemblyScript/assemblyscript#310
Diffstat (limited to 'test/ctor-eval/indirect-call3.wast.out')
-rw-r--r-- | test/ctor-eval/indirect-call3.wast.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ctor-eval/indirect-call3.wast.out b/test/ctor-eval/indirect-call3.wast.out index 561f17976..27351bcce 100644 --- a/test/ctor-eval/indirect-call3.wast.out +++ b/test/ctor-eval/indirect-call3.wast.out @@ -1,9 +1,9 @@ (module (type $FUNCSIG$v (func)) - (memory $0 256 256) - (data (i32.const 10) "waka waka xaka waka waka\00\00\00\00\00\00C") (import "env" "tableBase" (global $tableBase i32)) (import "env" "_abort" (func $_abort)) + (memory $0 256 256) + (data (i32.const 10) "waka waka xaka waka waka\00\00\00\00\00\00C") (func $call-indirect (; 1 ;) (type $FUNCSIG$v) (i32.store8 (i32.const 40) |