diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-08-28 18:15:33 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-09-07 09:55:58 -0700 |
commit | d58adf43956c65615c9cd8d6c2f4c2a3cceff8bb (patch) | |
tree | ec30ccb497799ff31d68ac76dc0b485f55fd24a9 /test/unit.fromasm.imprecise.no-opts | |
parent | fd0160dafa25699404c1603adfcf965c75115854 (diff) | |
download | binaryen-d58adf43956c65615c9cd8d6c2f4c2a3cceff8bb.tar.gz binaryen-d58adf43956c65615c9cd8d6c2f4c2a3cceff8bb.tar.bz2 binaryen-d58adf43956c65615c9cd8d6c2f4c2a3cceff8bb.zip |
support HEAP8[x | 0| notation in asm2wasm
Diffstat (limited to 'test/unit.fromasm.imprecise.no-opts')
-rw-r--r-- | test/unit.fromasm.imprecise.no-opts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit.fromasm.imprecise.no-opts b/test/unit.fromasm.imprecise.no-opts index 7fdd01aaa..89a448a82 100644 --- a/test/unit.fromasm.imprecise.no-opts +++ b/test/unit.fromasm.imprecise.no-opts @@ -956,6 +956,13 @@ (i32.const 0) ) ) + (func $heap8NoShift (param $x i32) (result i32) + (return + (i32.load8_s + (get_local $x) + ) + ) + ) (func $z (nop) ) |