diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-03-19 10:00:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-03-19 10:00:57 -0700 |
commit | ee9393ae048547f8d0d8aef6c00a197fe00234b0 (patch) | |
tree | 0701020e2b3642ac8167dc89a0edafb657127130 /src/library.js | |
parent | cad92b918bed03be4b822c7579b0f5d1affb9401 (diff) |
support for llvm 2.9
Diffstat (limited to 'src/library.js')
-rw-r--r-- | src/library.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index 81eb358a..b875e131 100644 --- a/src/library.js +++ b/src/library.js @@ -603,6 +603,7 @@ var Library = { llvm_memcpy_p0i8_p0i8_i32: 'memcpy', llvm_memcpy_p0i8_p0i8_i64: 'memcpy', + memmove__deps: ['memcpy'], memmove: function(dest, src, num, idunno) { // not optimized! if (num === 0) return; // will confuse malloc if 0 |