diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-14 11:39:19 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-14 11:39:19 -0700 |
commit | c672824a579495ec500f3cdb0ea99cb2d52be59e (patch) | |
tree | efdcec8f67d632ea1de66b1530411694b4ea0bba /src/jsifier.js | |
parent | 74e47602a9c28ff5b65f44889be76bf70c045937 (diff) |
use proper separator in va_argHandler; fixes #1705
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index f638ea08..e84de3ee 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -1375,7 +1375,7 @@ function JSify(data, functionsOnly, givenFunctions) { // store current list offset in tempInt, advance list offset by STACK_ALIGN, return list entry stored at tempInt return '(tempInt=' + makeGetValue(ident, Runtime.QUANTUM_SIZE, '*') + ',' + - makeSetValue(ident, Runtime.QUANTUM_SIZE, 'tempInt + ' + move, '*') + ',' + + makeSetValue(ident, Runtime.QUANTUM_SIZE, 'tempInt + ' + move, '*', null, null, null, null, ',') + ',' + makeGetValue(makeGetValue(ident, 0, '*'), 'tempInt', item.type) + ')'; } |