blob: 9f94aeb729b841e3afd5a33c0f7032c782449e7c [file] [log] [blame]
(module
(type $FUNCSIG$ff (func (param f32) (result f32)))
(import "env" "memory" (memory $memory 256 256))
(import "env" "table" (table $table 0 0 anyfunc))
(import "env" "__memory_base" (global $__memory_base i32))
(import "env" "__table_base" (global $__table_base i32))
(import "env" "_importf" (func $importf (param f32) (result f32)))
(export "main" (func $main))
(export "exportf" (func $exportf))
(func $exportf (; 1 ;) (param $a f32) (result f32)
(return
(f32.add
(get_local $a)
(f32.const 1)
)
)
)
(func $main (; 2 ;) (result i32)
(drop
(call $importf
(f32.const 3.4000000953674316)
)
)
(return
(i32.const 0)
)
)
)