summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/fac.js
blob: 5b3435a389324ac5b506657f82194d1caf1845b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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);