fix corner case in ufuzz (#3538)

This commit is contained in:
Alex Lam S.L 2019-10-28 16:04:07 +08:00 committed by GitHub
parent 2f3b460212
commit 95618793a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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("//-------------------------------------------------------------");