Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix other.test_warn_undefined on Windows. #2769

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function compile(raw) {

B = new Benchmarker();

//try {
try {
if (ll_file) {
if (phase === 'glue') {
compile(';');
Expand All @@ -326,7 +326,6 @@ B = new Benchmarker();
compile(ll_file); // we are given raw .ll
}
}
/*
} catch(err) {
if (err.indexOf('Aborting compilation due to previous errors') != -1) {
// Compiler failed on user error, print out the error message.
Expand All @@ -352,7 +351,6 @@ B = new Benchmarker();
}, 500);
} else throw err;
}
*/

//var M = keys(tokenCacheMisses).map(function(m) { return [m, misses[m]] }).sort(function(a, b) { return a[1] - b[1] });
//printErr(dump(M.slice(M.length-10)));
Expand Down