Add SIMD prerequisites (#469)

This commit is contained in:
Daniel Wirtz
2019-02-07 15:26:26 +01:00
committed by GitHub
parent 7ce3296b5e
commit 2f1a6c44ce
201 changed files with 1485 additions and 1432 deletions

View File

@ -3,12 +3,12 @@
(type $FFFi (func (param f64 f64 f64) (result i32)))
(type $FFi (func (param f64 f64) (result i32)))
(type $Fi (func (param f64) (result i32)))
(type $iiiiv (func (param i32 i32 i32 i32)))
(type $iiii_ (func (param i32 i32 i32 i32)))
(type $fffi (func (param f32 f32 f32) (result i32)))
(type $fff (func (param f32 f32) (result f32)))
(type $ffi (func (param f32 f32) (result i32)))
(type $fi (func (param f32) (result i32)))
(type $v (func))
(type $_ (func))
(import "math" "mod" (func $std/mod/mod (param f64 f64) (result f64)))
(import "env" "abort" (func $~lib/env/abort (param i32 i32 i32 i32)))
(memory $0 1)
@ -631,7 +631,7 @@
local.get $2
call $std/mod/check<f32>
)
(func $start (; 10 ;) (type $v)
(func $start (; 10 ;) (type $_)
f64.const 3
f64.const 2
f64.const 1
@ -2416,6 +2416,6 @@
unreachable
end
)
(func $null (; 11 ;) (type $v)
(func $null (; 11 ;) (type $_)
)
)