aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/WasmObjectFile.cpp
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2024-11-04 16:12:57 -0800
committerGitHub <noreply@github.com>2024-11-04 16:12:57 -0800
commitbe64ca912371ae62002aee3429de058052451d72 (patch)
tree56aa98a629e794b94a8933ed90b4971c3d9395a9 /llvm/lib/Object/WasmObjectFile.cpp
parent73822e4335e16b3f8f290561579f1f1118e005af (diff)
downloadllvm-be64ca912371ae62002aee3429de058052451d72.zip
llvm-be64ca912371ae62002aee3429de058052451d72.tar.gz
llvm-be64ca912371ae62002aee3429de058052451d72.tar.bz2
[WebAssembly] Remove WASM_FEATURE_PREFIX_REQUIRED (NFC) (#113729)
This has not been emitted since https://github.com/llvm/llvm-project/commit/3f34e1b883351c7d98426b084386a7aa762aa366. The corresponding proposed tool-conventions change: https://github.com/WebAssembly/tool-conventions/pull/236
Diffstat (limited to 'llvm/lib/Object/WasmObjectFile.cpp')
-rw-r--r--llvm/lib/Object/WasmObjectFile.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Object/WasmObjectFile.cpp b/llvm/lib/Object/WasmObjectFile.cpp
index f244099..35f152d 100644
--- a/llvm/lib/Object/WasmObjectFile.cpp
+++ b/llvm/lib/Object/WasmObjectFile.cpp
@@ -999,7 +999,6 @@ Error WasmObjectFile::parseTargetFeaturesSection(ReadContext &Ctx) {
Feature.Prefix = readUint8(Ctx);
switch (Feature.Prefix) {
case wasm::WASM_FEATURE_PREFIX_USED:
- case wasm::WASM_FEATURE_PREFIX_REQUIRED:
case wasm::WASM_FEATURE_PREFIX_DISALLOWED:
break;
default: