diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-16 12:49:07 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-16 12:49:07 -0800 |
commit | f240c68de7fc6399af7b7ea08a42d9ee7c8d2748 (patch) | |
tree | 696507c4fe88bd65f0ef3f0cdd58c00e43a5acb9 /src/preamble.js | |
parent | 1e3a60f206041ec004ef9755a673103c62e3c213 (diff) |
initial support for unaligned reads/writes in t2
Diffstat (limited to 'src/preamble.js')
-rw-r--r-- | src/preamble.js | 4 |
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 |