diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-22 01:15:28 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-22 01:15:28 +1000 |
commit | 44779c34305ddc5aa7bf271851f916c6680cdb44 (patch) | |
tree | a8658a8a99e88c56ff325992ad8c7d0a76209f74 /src/lvm.js | |
parent | 24df35b8e151bf6d0740b9d4ee87708657271587 (diff) | |
download | fengari-44779c34305ddc5aa7bf271851f916c6680cdb44.tar.gz fengari-44779c34305ddc5aa7bf271851f916c6680cdb44.tar.bz2 fengari-44779c34305ddc5aa7bf271851f916c6680cdb44.zip |
Use Math.imul when multiplying integers
Diffstat (limited to 'src/lvm.js')
-rw-r--r-- | src/lvm.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -242,7 +242,7 @@ const luaV_execute = function(L) { let numberop2 = tonumber(op2); if (op1.ttisinteger() && op2.ttisinteger()) { - L.stack[ra] = new lobject.TValue(CT.LUA_TNUMINT, (op1.value * op2.value)|0); + L.stack[ra] = new lobject.TValue(CT.LUA_TNUMINT, Math.imul(op1.value, op2.value)); } else if (numberop1 !== false && numberop2 !== false) { L.stack[ra] = new lobject.TValue(CT.LUA_TNUMFLT, numberop1 * numberop2); } else { |