summaryrefslogtreecommitdiff
path: root/chromium/v8/src/wasm/wasm-text.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/wasm/wasm-text.h')
-rw-r--r--chromium/v8/src/wasm/wasm-text.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/chromium/v8/src/wasm/wasm-text.h b/chromium/v8/src/wasm/wasm-text.h
index 60957966abe..205df5e6fd3 100644
--- a/chromium/v8/src/wasm/wasm-text.h
+++ b/chromium/v8/src/wasm/wasm-text.h
@@ -7,9 +7,10 @@
#include <cstdint>
#include <ostream>
-#include <tuple>
#include <vector>
+#include "src/common/globals.h"
+
namespace v8 {
namespace debug {
@@ -26,10 +27,10 @@ struct ModuleWireBytes;
// Generate disassembly according to official text format.
// Output disassembly to the given output stream, and optionally return an
// offset table of <byte offset, line, column> via the given pointer.
-void PrintWasmText(
- const WasmModule *module, const ModuleWireBytes &wire_bytes,
- uint32_t func_index, std::ostream &os,
- std::vector<debug::WasmDisassemblyOffsetTableEntry> *offset_table);
+V8_EXPORT_PRIVATE void PrintWasmText(
+ const WasmModule* module, const ModuleWireBytes& wire_bytes,
+ uint32_t func_index, std::ostream& os,
+ std::vector<debug::WasmDisassemblyOffsetTableEntry>* offset_table);
} // namespace wasm
} // namespace internal