[clang] [WebAssembly] Enable multivalue and reference-types in generic CPU config (PR #80923)

2024-04-23 Thread Alon Zakai via cfe-commits
@@ -668,6 +668,11 @@ AIX Support WebAssembly Support ^^^ +The -mcpu=generic configuration now enables multivalue and reference-types.These +proposals are standardized and available in all major engines. Enabling +multivalue here only enables the language

[clang] [WebAssembly] Enable multivalue and reference-types in generic CPU config (PR #80923)

2024-04-23 Thread Alon Zakai via cfe-commits
https://github.com/kripken edited https://github.com/llvm/llvm-project/pull/80923 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [WebAssembly] Enable multivalue and reference-types in generic CPU config (PR #80923)

2024-04-23 Thread Alon Zakai via cfe-commits
https://github.com/kripken commented: Enabling multivalue and reference-types first sgtm. https://github.com/llvm/llvm-project/pull/80923 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[clang] [WebAssembly] Update generic CPU configuration to include nontrapping-fptoint (PR #67459)

2023-09-26 Thread Alon Zakai via cfe-commits
@@ -453,6 +453,8 @@ AIX Support WebAssembly Support ^^^ +The -mcpu=generic configuration now enables -nontrapping-fptoint. This +proposals are standardized and available in all major engines. kripken wrote: ```suggestion proposal is

r357552 - [WebAssembly] Add Emscripten OS definition + small_printf

2019-04-02 Thread Alon Zakai via cfe-commits
Author: azakai Date: Tue Apr 2 18:08:35 2019 New Revision: 357552 URL: http://llvm.org/viewvc/llvm-project?rev=357552=rev Log: [WebAssembly] Add Emscripten OS definition + small_printf The Emscripten OS provides a definition of __EMSCRIPTEN__, and also that it supports iprintf optimizations.

Re: [PATCH] D40526: [WebAssembly] Change size_t to `unsigned long`

2018-08-09 Thread Alon Zakai via cfe-commits
This has also shown up in a game engine middleware codebase, so it may be a broader issue - people seem to assume size_t is one of the int*_t types. On Wed, Aug 8, 2018 at 10:55 AM, Sam Clegg via Phabricator < revi...@reviews.llvm.org> wrote: > sbc100 added a comment. > > In