We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d849f3a commit 29b6188Copy full SHA for 29b6188
src/compiler.js
@@ -316,7 +316,7 @@ function compile(raw) {
316
317
B = new Benchmarker();
318
319
-//try {
+try {
320
if (ll_file) {
321
if (phase === 'glue') {
322
compile(';');
@@ -326,7 +326,6 @@ B = new Benchmarker();
326
compile(ll_file); // we are given raw .ll
327
}
328
329
-/*
330
} catch(err) {
331
if (err.indexOf('Aborting compilation due to previous errors') != -1) {
332
// Compiler failed on user error, print out the error message.
@@ -352,7 +351,6 @@ B = new Benchmarker();
352
351
}, 500);
353
} else throw err;
354
355
-*/
356
357
//var M = keys(tokenCacheMisses).map(function(m) { return [m, misses[m]] }).sort(function(a, b) { return a[1] - b[1] });
358
//printErr(dump(M.slice(M.length-10)));
0 commit comments