Skip to content

Commit

Permalink
Auto merge of rust-lang#51695 - est31:stdsimd_update, r=alexcrichton
Browse files Browse the repository at this point in the history
Update stdsimd

Closes rust-lang#51691
  • Loading branch information
bors committed Jul 3, 2018
2 parents 0fb6e39 + 56e4625 commit 8fa9bfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/etc/wasm32-shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ imports.env = {
exp2f: function(x) { return Math.pow(2, x); },
ldexp: function(x, y) { return x * Math.pow(2, y); },
ldexpf: function(x, y) { return x * Math.pow(2, y); },
sin: Math.sin,
sinf: Math.sin,
cos: Math.cos,
cosf: Math.cos,
log: Math.log,
log2: Math.log2,
log10: Math.log10,
Expand Down
2 changes: 1 addition & 1 deletion src/stdsimd

0 comments on commit 8fa9bfe

Please sign in to comment.