diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-31 12:23:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-31 12:23:09 -0800 |
commit | 5edd66f9c9d489c7e78dc6c60751a29848219e08 (patch) | |
tree | 9e70a083f1aece7cab38f28744a04a6ccee763b4 /src/parseTools.js | |
parent | ac9746686208c6d1a00c90830a93cc5a620bc11e (diff) |
fix parseInt64
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 1ef09f49..7b29d35e 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -1011,7 +1011,7 @@ function asmCoercion(value, type) { } } -function makeGetTempDouble(i) { +function makeGetTempDouble(i) { // TODO: Support other than i32 return makeGetValue('tempDoublePtr', Runtime.getNativeTypeSize('i32')*i, 'i32'); } |