aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-11-10 13:36:13 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-11-10 13:36:13 -0800
commit008d2433826b0ac7d4bdd5556bd4c6b4f1351c73 (patch)
tree078b3d833e98d3dd21bce1fbc6bd87b64516f356 /src/jsifier.js
parentbbefb9fb22982d5ed712f8eb9664fef8d278c4b1 (diff)
more i64 fixes and tests
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index b362009d..a12bf883 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -848,7 +848,7 @@ function JSify(data, functionsOnly, givenFunctions, givenGlobalVariables) {
var val = finalizeParam(param);
if (!func || !func.hasVarArgs || i < func.numParams-1 || useJSArgs) {
if (param.type == 'i64' && I64_MODE == 1) {
- val = makeI64Copy(val); // Must copy [low, high] i64s, so they don't end up modified in the caller
+ val = makeCopyI64(val); // Must copy [low, high] i64s, so they don't end up modified in the caller
}
args.push(val);
argsTypes.push(param.type);