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/parseTools.js | |
parent | eeaacf90a9e80f0b295b16233ea09d1be9cc2222 (diff) |
add handwritten asm i64Subtract
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index 010f4988..a568b718 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -2062,7 +2062,7 @@ function processMathop(item) { } case 'sub': { if (PRECISE_I64_MATH) { - return i64PreciseOp('subtract'); + return i64PreciseLib('subtract'); } else { warnI64_1(); return finish(splitI64(mergeI64(idents[0]) + '-' + mergeI64(idents[1]), true)); |