diff options
author | alon@honor <none@none> | 2010-10-23 17:48:34 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-10-23 17:48:34 -0700 |
commit | e4b1cfc027f7e0ebb21a423d2bd763b17e9b88b3 (patch) | |
tree | 441560259535d75cb937c8babd000d978bc9bd91 /src/jsifier.js | |
parent | 13bec340b6137fa1cb4549c1f92b4ef2bcc66580 (diff) |
handle llvm functions in ret
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 66cf22e7..e73a5861 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -571,7 +571,7 @@ function JSify(data) { if (LABEL_DEBUG) ret += "INDENT = INDENT.substr(0, INDENT.length-2);\n"; ret += 'return'; if (item.value) { - ret += ' ' + toNiceIdent(item.value); + ret += ' ' + finalizeLLVMParameter(item.value); } return ret + ';'; }); |