summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2020-11-03 19:10:42 -0800
committerGitHub <noreply@github.com>2020-11-03 19:10:42 -0800
commit3bf75aa82ef96fd52f47fbe63ebe1c555c9dfcb8 (patch)
tree15142619abe4b4f6cc9c5aa9d64ee7d622d4268b /src
parent97b1674067fd380571cdce8bf2200532de2dbc42 (diff)
downloadbinaryen-3bf75aa82ef96fd52f47fbe63ebe1c555c9dfcb8.tar.gz
binaryen-3bf75aa82ef96fd52f47fbe63ebe1c555c9dfcb8.tar.bz2
binaryen-3bf75aa82ef96fd52f47fbe63ebe1c555c9dfcb8.zip
Remove unused wasm-object.h (#3319)
Diffstat (limited to 'src')
-rw-r--r--src/abi/wasm-object.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/abi/wasm-object.h b/src/abi/wasm-object.h
deleted file mode 100644
index d12e1f581..000000000
--- a/src/abi/wasm-object.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 2018 WebAssembly Community Group participants
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-//
-// Contains definitions used for wasm object files.
-// See: https://github.com/WebAssembly/tool-conventions/blob/master/Linking.md
-//
-
-#ifndef wasm_abi_wasm_object_h
-#define wasm_abi_wasm_object_h
-
-namespace wasm {
-
-namespace ABI {
-enum LinkType : unsigned {
- WASM_STACK_POINTER = 0x1,
- WASM_SYMBOL_INFO = 0x2,
- WASM_DATA_SIZE = 0x3,
- WASM_DATA_ALIGNMENT = 0x4,
- WASM_SEGMENT_INFO = 0x5,
- WASM_INIT_FUNCS = 0x6,
-};
-} // namespace ABI
-
-} // namespace wasm
-
-#endif // wasm_abi_wasm_object_h