aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-02-01 17:34:51 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-02-01 17:34:51 -0800
commit88e80b39ca94ad8e9ef4b8b965cd61c2e4a410e5 (patch)
tree270cf0d8101f956c7a2ba1e14935d28d7400299c /src/jsifier.js
parentf42fd56f4d3451a9ef0cb83248258749e33d22e3 (diff)
use ',' to separate in makeSetValues inside function calls
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 e52d3a00..97d04055 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -1103,7 +1103,7 @@ function JSify(data, functionsOnly, givenFunctions) {
var type = varargsTypes[i];
if (type == 0) return null;
if (I64_MODE == 1 && type == 'i64') type = 'i32'; // We have [i64, 0, 0, 0, i32, 0, 0, 0] in the layout at this point
- var ret = makeSetValue(getFastValue('tempInt', '+', offset), 0, arg, type, null, null, QUANTUM_SIZE);
+ var ret = makeSetValue(getFastValue('tempInt', '+', offset), 0, arg, type, null, null, QUANTUM_SIZE, null, ',');
offset += Runtime.getNativeFieldSize(type);
return ret;
}).filter(function(arg) {