Lukas =?utf-8?q?Döllerer?= ,
Lukas =?utf-8?q?Döllerer?= ,
Lukas =?utf-8?q?Döllerer?=
Message-ID:
In-Reply-To:
kripken wrote:
@Lukasdoe You may be interested in this Binaryen PR which adds passes for
branch hint debugging:
https://github.com/WebAssembly/binaryen/pull/7695
For example you cou
@@ -165,14 +165,17 @@ void Writer::createCustomSections() {
for (auto &pair : customSectionMapping) {
StringRef name = pair.first;
LLVM_DEBUG(dbgs() << "createCustomSection: " << name << "\n");
-
-OutputSection *sec = make(std::string(name), pair.second);
+Out
kripken wrote:
I am seeing a runtime error after this, when using C++23, which looks like a
regression. Testcase:
```cpp
// A.hpp
#include
struct MyStruct {
double m0{-.0};
int m1{-12345};
};
constexpr MyStruct default_val;
auto compute_area(double l, const MyStruct &val = default
@@ -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 featu
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
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
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commit
@@ -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 standardiz
Author: azakai
Date: Tue Apr 2 18:08:35 2019
New Revision: 357552
URL: http://llvm.org/viewvc/llvm-project?rev=357552&view=rev
Log:
[WebAssembly] Add Emscripten OS definition + small_printf
The Emscripten OS provides a definition of __EMSCRIPTEN__, and also that it
supports iprintf optimizations
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 https://reviews.llvm.