summaryrefslogtreecommitdiff
path: root/test/noffi_f32.fromasm.imprecise
blob: 94c5183854744db596716a36acd53bcde18b23ee (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
(module
 (type $FUNCSIG$ff (func (param f32) (result f32)))
 (import "env" "_importf" (func $importf (param f32) (result f32)))
 (import "env" "memory" (memory $0 256 256))
 (import "env" "table" (table 0 0 anyfunc))
 (import "env" "memoryBase" (global $memoryBase i32))
 (import "env" "tableBase" (global $tableBase i32))
 (export "main" (func $main))
 (export "exportf" (func $exportf))
 (func $exportf (; 1 ;) (param $0 f32) (result f32)
  (f32.add
   (get_local $0)
   (f32.const 1)
  )
 )
 (func $main (; 2 ;) (result i32)
  (drop
   (call $importf
    (f32.const 3.4000000953674316)
   )
  )
  (i32.const 0)
 )
)