summaryrefslogtreecommitdiff
path: root/test/wasm2js/nested-selects.wast
blob: 9d044ffe6cc2b49df925d38c381c6b689a5bb019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(module
  (func $dummy)

  (func (export "sign") (param $0 i32) (result i32)
    (select
      (i32.const -1)
      (select
        (i32.const 1)
        (i32.const 0)
        (i32.gt_s
          (local.get $0)
          (i32.const 0)
        )
      )
      (i32.lt_s
        (local.get $0)
        (i32.const 0)
      )
    )
  )
)