summaryrefslogtreecommitdiff
path: root/test/min.fromasm.imprecise
blob: 51750dd531a182ba8e0a797cd1a4991ccd1c1683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(module
  (memory 256 256)
  (export "memory" memory)
  (export "floats" $floats)
  (func $floats (param $0 f32) (result f32)
    (local $1 f32)
    (f32.add
      (get_local $1)
      (get_local $0)
    )
  )
  (func $neg (param $0 i32) (param $1 i32) (result f32)
    (i32.store
      (get_local $0)
      (get_local $1)
    )
    (f32.neg
      (f32.load
        (get_local $0)
      )
    )
  )
  (func $bitcasts (param $0 i32) (param $1 f32)
    (nop)
  )
  (func $ctzzzz (result i32)
    (i32.ctz
      (i32.const 4660)
    )
  )
)