You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
213 B
12 lines
213 B
(module
|
|
(func (param i32) (result f32)
|
|
f32.const 0
|
|
local.get 0
|
|
f32.load offset=1
|
|
f32.copysign
|
|
)
|
|
(memory 1)
|
|
(export "f" (func 0))
|
|
)
|
|
|
|
(assert_return (invoke "f" (i32.const 0)) (f32.const 0))
|
|
|