[PATCH] D139010: [clang][WebAssembly] Implement support for table types and builtins
Paulo Matos via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 23 05:47:54 PST 2023
pmatos marked 2 inline comments as done.
pmatos added inline comments.
================
Comment at: clang/include/clang/Basic/DiagnosticSemaKinds.td:11797
+def err_typecheck_wasm_table_must_have_zero_length : Error<
+ "only zero-length WebAssembly tables are currently supported">;
+def err_wasm_table_in_function : Error<
----------------
aaron.ballman wrote:
> Do you plan to support non-zero-length tables in the near future? I'm wondering if this should be reworded to remove the "currently supported" phrasing.
Yes, the next phase of this work is to implement this together with element section to initialize tables.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139010/new/
https://reviews.llvm.org/D139010
More information about the llvm-commits
mailing list