diff options
-rw-r--r-- | src/wasm-binary.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 935ffbae6..db2c0d71d 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -217,16 +217,16 @@ namespace BinaryConsts { namespace Section { auto Memory = "memory"; - auto Signatures = "signatures"; - auto ImportTable = "import_table"; - auto FunctionSignatures = "function_signatures"; - auto Functions = "functions"; - auto ExportTable = "export_table"; - auto DataSegments = "data_segments"; - auto FunctionTable = "function_table"; - auto Names = "names"; + auto Signatures = "type"; + auto ImportTable = "import"; + auto FunctionSignatures = "function"; + auto Functions = "code"; + auto ExportTable = "export"; + auto DataSegments = "data"; + auto FunctionTable = "table"; + auto Names = "name"; auto End = "end"; - auto Start = "start_function"; + auto Start = "start"; }; enum FunctionEntry { |