aboutsummaryrefslogtreecommitdiff
path: root/src/preamble.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-07 13:47:08 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-07 13:47:08 -0800
commit462bfcbbb38e45b0d00609cd472460b260dc9f62 (patch)
tree477abd34f58bdc21b9a94d1bb98c7045b62622b2 /src/preamble.js
parentd47fe1fafddd097bdbe3d2703629e75defccd6fb (diff)
various i64 fixes, including preventing rounding of small negatives
Diffstat (limited to 'src/preamble.js')
-rw-r--r--src/preamble.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preamble.js b/src/preamble.js
index 2a41ed05..1c614e21 100644
--- a/src/preamble.js
+++ b/src/preamble.js
@@ -334,7 +334,7 @@ var ABORT = false;
var undef = 0;
// tempInt is used for 32-bit signed values or smaller. tempBigInt is used
// for 32-bit unsigned values or more than 32 bits. TODO: audit all uses of tempInt
-var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair;
+var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair, tempBigIntI, tempBigIntR, tempBigIntS, tempBigIntP, tempBigIntD;
#if I64_MODE == 1
var tempI64, tempI64b;
#endif