Chromium Code Reviews| Index: src/wasm/wasm-opcodes.h |
| diff --git a/src/wasm/wasm-opcodes.h b/src/wasm/wasm-opcodes.h |
| index 07cca4c58817a0ab7c447bede19fc035d1a0219e..3b9f3aa183bc98d4631df25abc4dfa0dfec65f97 100644 |
| --- a/src/wasm/wasm-opcodes.h |
| +++ b/src/wasm/wasm-opcodes.h |
| @@ -49,15 +49,6 @@ const LocalType kAstEnd = MachineRepresentation::kTagged; |
| typedef Signature<LocalType> FunctionSig; |
| std::ostream& operator<<(std::ostream& os, const FunctionSig& function); |
| -struct WasmName { |
|
titzer
2016/04/22 13:35:20
You could as well introduce a typedef to keep the
|
| - const char* name; |
| - uint32_t length; |
| - // TODO(clemensh): Remove whole WasmName, replace by Vector<const char> |
| - inline Vector<const char> toVec() const { |
| - return Vector<const char>(name, length); |
| - } |
| -}; |
| - |
| // TODO(titzer): Renumber all the opcodes to fill in holes. |
| // Control expressions and blocks. |