blob: afc4beee844c0751af811e30bf7752a7a0a74006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// |jit-test| --test-wasm-await-tier2; --cpu-count=1
// Test that compilation works when there's only one core available.
// This is fac-opt from fac.wast in the official testsuite, changed to use
// i32 instead of i64.
assertEq(wasmEvalText(`(module
(func $fac-opt (param i32) (result i32)
(local i32)
(local.set 1 (i32.const 1))
(block
(br_if 0 (i32.lt_s (local.get 0) (i32.const 2)))
(loop
(local.set 1 (i32.mul (local.get 1) (local.get 0)))
(local.set 0 (i32.add (local.get 0) (i32.const -1)))
(br_if 0 (i32.gt_s (local.get 0) (i32.const 1)))
)
)
(local.get 1)
)
(export "" (func 0))
)`).exports[""](10), 3628800);
|