We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c4fe46 commit 9571958Copy full SHA for 9571958
crates/wast/tests/local/if.wast
@@ -0,0 +1,10 @@
1
+(module
2
+ (func (export "if.only-then.diverging")
3
+ (if
4
+ (i32.const 0) ;; false
5
+ (then
6
+ (br 0)
7
+ )
8
9
10
+)
crates/wast/tests/mod.rs
@@ -202,6 +202,7 @@ macro_rules! expand_tests {
202
fn wasmi_wide_arithmetic("../../local/wide-arithmetic");
203
fn wasmi_replace_result("../../local/replace-result");
204
fn wasmi_local_tee("../../local/local-tee");
205
+ fn wasmi_if("../../local/if");
206
207
// Wasm `simd` tests
208
fn wasm_simd_address("simd_address");
0 commit comments