aboutsummaryrefslogtreecommitdiff
path: root/src/preamble.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-11-16 12:49:07 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-11-16 12:49:07 -0800
commitf240c68de7fc6399af7b7ea08a42d9ee7c8d2748 (patch)
tree696507c4fe88bd65f0ef3f0cdd58c00e43a5acb9 /src/preamble.js
parent1e3a60f206041ec004ef9755a673103c62e3c213 (diff)
initial support for unaligned reads/writes in t2
Diffstat (limited to 'src/preamble.js')
-rw-r--r--src/preamble.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preamble.js b/src/preamble.js
index 7aa07cc1..4bdb4333 100644
--- a/src/preamble.js
+++ b/src/preamble.js
@@ -66,7 +66,7 @@ var warned64 = false;
function warn64() {
if (!warned64) {
__ATEXIT__.push({ func: function() {
- print('Warning: using a 64-bit type with USE_TYPED_ARRAYS == 2. This is emulated as a 32-bit value, and will likely fail horribly.');
+ print('Warning: using a 64-bit type with USE_TYPED_ARRAYS == 2. Depending on I64_MODE this may be problematic.');
} });
warned64 = true;
}
@@ -381,7 +381,7 @@ var __ATEXIT__ = [];
var ABORT = false;
var undef = 0;
-var tempValue, tempInt, tempBigInt;
+var tempValue, tempInt, tempBigInt, tempInt2, tempBigInt2, tempPair;
#if I64_MODE == 1
var tempI64, tempI64b;
#endif