diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-05 10:53:57 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-05 10:53:57 -0800 |
commit | 66a4a8a36e9ef4705dbf128cb1a5a43f165b52f6 (patch) | |
tree | 3bff340a9d03765d08a1eca8187d26a8feb92b13 | |
parent | 952db09871053e7a61ccc7f70ccf5cd738eb3f14 (diff) |
add debug output of which functions are being processed in side passes
-rw-r--r-- | src/intertyper.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index c9580319..7bc23653 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -540,6 +540,7 @@ function intertyper(data, sidePass, baseLineNums) { return !(token.text in LLVM.LINKAGES || token.text in LLVM.PARAM_ATTR || token.text in LLVM.FUNC_ATTR || token.text in LLVM.CALLING_CONVENTIONS); }); var params = parseParamTokens(item.tokens[2].item.tokens); + if (sidePass) dprint('unparsedFunctions', 'Processing function: ' + item.tokens[1].text); return [{ intertype: 'function', ident: toNiceIdent(item.tokens[1].text), |