diff options
author | Yury Delendik <ydelendik@mozilla.com> | 2016-04-18 13:40:27 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 11:40:27 -0700 |
commit | bbc39d6e75e8b87170f7a3cd72dd34976687e7f6 (patch) | |
tree | 1f07850627217bf3321c8188aee74817b537a9a5 /test/unit.fromasm.imprecise | |
parent | 4dfeb1c3a84b13188c22e158c5947c68964cddff (diff) | |
download | binaryen-bbc39d6e75e8b87170f7a3cd72dd34976687e7f6.tar.gz binaryen-bbc39d6e75e8b87170f7a3cd72dd34976687e7f6.tar.bz2 binaryen-bbc39d6e75e8b87170f7a3cd72dd34976687e7f6.zip |
Fixes typo in hex number parsing in asm2wasm. (#362)
Fixes #352
Diffstat (limited to 'test/unit.fromasm.imprecise')
-rw-r--r-- | test/unit.fromasm.imprecise | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/unit.fromasm.imprecise b/test/unit.fromasm.imprecise index 613180bbd..ae9b4d70c 100644 --- a/test/unit.fromasm.imprecise +++ b/test/unit.fromasm.imprecise @@ -117,6 +117,15 @@ ) ) ) + (func $hexLiterals + (i32.add + (i32.add + (i32.const 0) + (i32.const 313249263) + ) + (i32.const -19088752) + ) + ) (func $conversions (local $i i32) (local $d f64) |