diff options
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index 10e09f1c..adf465ed 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -822,7 +822,9 @@ function JSify(data, functionsOnly, givenFunctions, givenGlobalVariables) { return '__lastLabel__ == ' + getLabelId(params[i].label) + ' ? ' + finalizeLLVMParameter(params[i].value) + ' : (' + makeOne(i+1) + ')'; } - return makeOne(0); + var ret = makeOne(0); + if (item.postSet) ret += item.postSet; + return ret; }); makeFuncLineActor('mathop', processMathop); |