Skip to content

Commit

Permalink
fix corner case in ufuzz (#3538)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl committed Oct 28, 2019
1 parent 2f3b460 commit 9561879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ufuzz/index.js
Expand Up @@ -1060,7 +1060,7 @@ function log(options) {
errorln("//=============================================================");
if (!ok) errorln("// !!!!!! Failed... round " + round);
errorln("// original code");
try_beautify(orig_code(options.compress.unsafe_math), options.toplevel, original_result, errorln);
try_beautify(orig_code(options.compress && options.compress.unsafe_math), options.toplevel, original_result, errorln);
errorln();
errorln();
errorln("//-------------------------------------------------------------");
Expand Down

0 comments on commit 9561879

Please sign in to comment.