Index: src/wasm/wasm-js.cc |
diff --git a/src/wasm/wasm-js.cc b/src/wasm/wasm-js.cc |
index d690329bcd4ec12c568713afc96402656e19b911..11bcdb86a1147c638928730b6f88d6fd8dea010c 100644 |
--- a/src/wasm/wasm-js.cc |
+++ b/src/wasm/wasm-js.cc |
@@ -152,14 +152,6 @@ v8::internal::wasm::WasmModuleIndex* TranslateAsmModule( |
info->literal(), foreign, &typer) |
.Run(); |
- if (i::FLAG_dump_asmjs_wasm) { |
- FILE* wasm_file = fopen(i::FLAG_asmjs_wasm_dumpfile, "wb"); |
- if (wasm_file) { |
- fwrite(module->Begin(), module->End() - module->Begin(), 1, wasm_file); |
- fclose(wasm_file); |
- } |
- } |
- |
return module; |
} |