diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2018-11-19 13:31:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 13:31:47 -0800 |
commit | 7011e47ff4ef1a48d15d399f4dfaa761de4779af (patch) | |
tree | a6da8ea3b3416cc5210c5b9edcee64615405f48e /test/ctor-eval/basics-flatten.wast | |
parent | fa0dfb6a3da3d05e01051a72d9348b2f3024222b (diff) | |
download | binaryen-7011e47ff4ef1a48d15d399f4dfaa761de4779af.tar.gz binaryen-7011e47ff4ef1a48d15d399f4dfaa761de4779af.tar.bz2 binaryen-7011e47ff4ef1a48d15d399f4dfaa761de4779af.zip |
Generate sexp instruction parser (#1754)
Also fix broken tests surfaced by the new parser.
Diffstat (limited to 'test/ctor-eval/basics-flatten.wast')
-rw-r--r-- | test/ctor-eval/basics-flatten.wast | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ctor-eval/basics-flatten.wast b/test/ctor-eval/basics-flatten.wast index da8b76163..07078bfc3 100644 --- a/test/ctor-eval/basics-flatten.wast +++ b/test/ctor-eval/basics-flatten.wast @@ -17,8 +17,10 @@ ) (func $test2 (drop (i32.load (i32.const 12))) ;; a safe load - (drop (i32.load16 (i32.const 12))) - (drop (i32.load8 (i32.const 12))) + (drop (i32.load16_s (i32.const 12))) + (drop (i32.load8_s (i32.const 12))) + (drop (i32.load16_u (i32.const 12))) + (drop (i32.load8_u (i32.const 12))) ) (func $test3 (i32.store (i32.const 12) (i32.const 115)) ;; a safe store, should alter memory |