diff options
author | Heejin Ahn <aheejin@gmail.com> | 2024-11-04 16:12:57 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-04 16:12:57 -0800 |
commit | be64ca912371ae62002aee3429de058052451d72 (patch) | |
tree | 56aa98a629e794b94a8933ed90b4971c3d9395a9 /llvm/lib/Object/WasmObjectFile.cpp | |
parent | 73822e4335e16b3f8f290561579f1f1118e005af (diff) | |
download | llvm-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.cpp | 1 |
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: |