| Index: src/wasm/module-decoder.cc
|
| diff --git a/src/wasm/module-decoder.cc b/src/wasm/module-decoder.cc
|
| index 25ce7b6cd72d4cdd1518c43e2cacd704544535a7..1f7ff0b5fe011fdc80b0f7735460e1e164e9ca1a 100644
|
| --- a/src/wasm/module-decoder.cc
|
| +++ b/src/wasm/module-decoder.cc
|
| @@ -572,11 +572,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,
|
|
|