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 | |
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')
-rw-r--r-- | test/unit.fromasm.imprecise | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/unit.fromasm.imprecise b/test/unit.fromasm.imprecise index 5ebe88c6f..493ebb67e 100644 --- a/test/unit.fromasm.imprecise +++ b/test/unit.fromasm.imprecise @@ -556,4 +556,9 @@ ) (i32.const 0) ) + (func $heap8NoShift (param $0 i32) (result i32) + (i32.load8_s + (get_local $0) + ) + ) ) |