diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2014-03-15 19:31:14 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2014-03-28 23:06:16 -0400 |
commit | 4c601e62b9d7cf6a2a873c6886f701ad7de31fde (patch) | |
tree | 3506c1fe13376cc25fac5cce84aa65b2dc6be8d5 /src | |
parent | 161e3630125de2b4431f99c65d2b2a9198400fa9 (diff) |
Added musl 0.9.13 bcmp and bzero functions and migrated bcopy implementation to use musl for better asm.js performance.
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/library.js b/src/library.js index fed4fd43..a146eb7d 100644 --- a/src/library.js +++ b/src/library.js @@ -3522,13 +3522,6 @@ LibraryManager.library = { llvm_memmove_p0i8_p0i8_i32: 'memmove', llvm_memmove_p0i8_p0i8_i64: 'memmove', - bcopy__deps: ['memmove'], - bcopy: function(src, dest, num) { - // void bcopy(const void *s1, void *s2, size_t n); - // http://pubs.opengroup.org/onlinepubs/009695399/functions/bcopy.html - _memmove(dest, src, num); - }, - memset__inline: function(ptr, value, num, align) { return makeSetValues(ptr, 0, value, 'null', num, align); }, |