-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfenv.wo
52 lines (52 loc) · 1.21 KB
/
fenv.wo
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(module $fenv
(import "crt" "sp$" (global $crt:sp$ (mut i32)))
(import "crt" "memory" (memory $crt:memory 0))
(func $fenv:feclearexcept (export "feclearexcept")
(param $mask i32)
return
)
(func $fenv:fegetexceptflag (export "fegetexceptflag")
(param $flagp i32) (param $excepts i32)
return
)
(func $fenv:feraiseexcept (export "feraiseexcept")
(param $excepts i32)
return
)
(func $fenv:fesetexceptflag (export "fesetexceptflag")
(param $flagp i32) (param $excepts i32)
return
)
(func $fenv:fetestexcept (export "fetestexcept")
(param $excepts i32) (result i32)
i32.const 0
return
)
(func $fenv:fegetround (export "fegetround")
(result i32)
i32.const 0
return
)
(func $fenv:fesetround (export "fesetround")
(param $round i32) (result i32)
i32.const 0
return
)
(func $fenv:fegetenv (export "fegetenv")
(param $envp i32)
return
)
(func $fenv:feholdexcept (export "feholdexcept")
(param $envp i32) (result i32)
i32.const 0
return
)
(func $fenv:fesetenv (export "fesetenv")
(param $envp i32)
return
)
(func $fenv:feupdateenv (export "feupdateenv")
(param $envp i32)
return
)
)