diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-14 09:33:53 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-14 09:33:53 -0700 |
commit | 90c4b12c0b07ca889eb5521b434f5ce258b651a1 (patch) | |
tree | f7e11f81c931542003218b60e6d6aefbd3faea79 /src/jsifier.js | |
parent | eeaacf90a9e80f0b295b16233ea09d1be9cc2222 (diff) |
add handwritten asm i64Subtract
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index 262dd3eb..2cf94a0d 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -1606,7 +1606,7 @@ function JSify(data, functionsOnly, givenFunctions) { // "Final shape that will be created"). if (PRECISE_I64_MATH && Types.preciseI64MathUsed) { if (!INCLUDE_FULL_LIBRARY) { - ['i64Add', 'bitshift64Shl', 'bitshift64Lshr', 'bitshift64Ashr'].forEach(function(func) { + ['i64Add', 'i64Subtract', 'bitshift64Shl', 'bitshift64Lshr', 'bitshift64Ashr'].forEach(function(func) { print(processLibraryFunction(LibraryManager.library[func], func)); // must be first to be close to generated code Functions.implementedFunctions['_' + func] = LibraryManager.library[func + '__sig']; }); |