File: noffi_f32.fromasm.imprecise

package info (click to toggle)
binaryen 68-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,900 kB
  • sloc: cpp: 57,351; ansic: 3,562; python: 2,898; sh: 700; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 462 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(module
 (type $FUNCSIG$ff (func (param f32) (result f32)))
 (import "env" "_importf" (func $importf (param f32) (result f32)))
 (export "main" (func $main))
 (export "exportf" (func $exportf))
 (func $exportf (; 1 ;) (; has Stack IR ;) (param $0 f32) (result f32)
  (f32.add
   (local.get $0)
   (f32.const 1)
  )
 )
 (func $main (; 2 ;) (; has Stack IR ;) (result i32)
  (drop
   (call $importf
    (f32.const 3.4000000953674316)
   )
  )
  (i32.const 0)
 )
)