Index: src/wasm/wasm-opcodes.h |
diff --git a/src/wasm/wasm-opcodes.h b/src/wasm/wasm-opcodes.h |
index ae2843a6c154da5a7f7ebd5668085f2a1de30ac2..88fb49afe18744a0c1d35e0fa548126117a4cb21 100644 |
--- a/src/wasm/wasm-opcodes.h |
+++ b/src/wasm/wasm-opcodes.h |
@@ -66,6 +66,7 @@ struct MemoryAccess { |
}; |
typedef Signature<LocalType> FunctionSig; |
+std::ostream& operator<<(std::ostream& os, const FunctionSig& function); |
// Control expressions and blocks. |
#define FOREACH_CONTROL_OPCODE(V) \ |
@@ -398,7 +399,6 @@ class WasmOpcodes { |
} |
} |
- // TODO(titzer): remove this method |
static WasmOpcode LoadStoreOpcodeOf(MachineType type, bool store) { |
if (type == MachineType::Int8()) { |
return store ? kExprI32StoreMem8 : kExprI32LoadMem8S; |