diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-14 18:10:42 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-14 18:10:42 -0800 |
commit | cb50975f3a139fa7bfe72b3df5a422dfa7a24b25 (patch) | |
tree | bfd0099b6a006382090f21c27f1c67b5de0ae8cf /src/parseTools.js | |
parent | ed8723d8761fbf5be179f3fc492e4ffab71597f9 (diff) |
use tempBigInt properly in asm
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 b435855d..dfb121a4 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -1197,7 +1197,7 @@ function makeSetValue(ptr, pos, value, type, noNeedFirst, ignore, align, noSafe, ret += 'tempBigInt=' + value + sep; for (var i = 0; i < bytes; i++) { ret += makeSetValue(ptr, getFastValue(pos, '+', i), 'tempBigInt&0xff', 'i8', noNeedFirst, ignore, 1); - if (i < bytes-1) ret += sep + 'tempBigInt>>=8' + sep; + if (i < bytes-1) ret += sep + 'tempBigInt = tempBigInt>>8' + sep; } } } else { |