Index: src/wasm/module-decoder.cc |
diff --git a/src/wasm/module-decoder.cc b/src/wasm/module-decoder.cc |
index 558d17c5a6e1117e8cf4f9c37f52faaef43e965d..ce3f50a87285fe4b838e34da52f90020ac305d3a 100644 |
--- a/src/wasm/module-decoder.cc |
+++ b/src/wasm/module-decoder.cc |
@@ -566,11 +566,10 @@ class ModuleDecoder : public Decoder { |
// Verifies the body (code) of a given function. |
void VerifyFunctionBody(uint32_t func_num, ModuleEnv* menv, |
WasmFunction* function) { |
- if (FLAG_trace_wasm_decode_time) { |
+ if (FLAG_trace_wasm_decoder || FLAG_trace_wasm_decode_time) { |
OFStream os(stdout); |
os << "Verifying WASM function " << WasmFunctionName(function, menv) |
<< std::endl; |
- os << std::endl; |
} |
FunctionBody body = {menv, function->sig, start_, |
start_ + function->code_start_offset, |