diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-09-28 13:10:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-28 13:10:59 -0700 |
commit | 2da1b20451a744daa613e818f71e8f52de3a818e (patch) | |
tree | 62632269da091888b428b003c0ae703aa27ee2b3 /test/unit.fromasm.imprecise.no-opts | |
parent | ef22ce6c360b70b5bfad40b2930c481d48ed9780 (diff) | |
download | binaryen-2da1b20451a744daa613e818f71e8f52de3a818e.tar.gz binaryen-2da1b20451a744daa613e818f71e8f52de3a818e.tar.bz2 binaryen-2da1b20451a744daa613e818f71e8f52de3a818e.zip |
Type check block/loop/if sigs (#717)
* type check using block/loop/if types provided in text and binary formats.
* print if and loop sigs which were missing.
* remove dsl from OptimizeInstructions as after those changes it needs rethinking.
Diffstat (limited to 'test/unit.fromasm.imprecise.no-opts')
-rw-r--r-- | test/unit.fromasm.imprecise.no-opts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit.fromasm.imprecise.no-opts b/test/unit.fromasm.imprecise.no-opts index 16a10861b..ba1102aa2 100644 --- a/test/unit.fromasm.imprecise.no-opts +++ b/test/unit.fromasm.imprecise.no-opts @@ -985,7 +985,7 @@ (local $x i32) (local $y f64) (set_local $x - (if + (if i32 (call $return_int) (i32.trunc_s/f64 (call $abort @@ -998,7 +998,7 @@ ) ) (set_local $y - (if + (if f64 (call $return_int) (call $abort (f64.convert_s/i32 |