diff options
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index 94197390..e42f5e19 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -218,7 +218,7 @@ if (phase == 'funcs' && RELOOP) { // XXX handle !singlePhase try { load(RELOOPER); } catch(e) { - printErr('cannot find relooper at ' + RELOOPER + ', trying in current dir'); + printErr('cannot load relooper at ' + RELOOPER + ' : ' + e + ', trying in current dir'); load('relooper.js'); } assert(typeof Relooper != 'undefined'); @@ -275,6 +275,7 @@ function compile(raw) { JSify(analyzed); //dumpInterProf(); + //printErr(phase + ' paths (fast, slow): ' + [fastPaths, slowPaths]); phase = null; |