Results 218 comments of Johan Engelen
trafficstars

Can you add this compiler-rt search description as a document in the `docs` folder? (we'll figure out how to render LDC docs at some later moment, but for now let's...

The `--x86-asm-syntax=intel` option is an LLVM option (meaning it is probably "expert" usage, and it is also available to Clang), and I don't think LDC should document such options; LDC...

@ljmf00-wekaio It appears to be related by wtracer's own implementation of `SumType`. If I remove that code and use `std.sumtype.SumType` instead, things do compile again after commenting-out code that uses...

It could be related to some compiler bug where it mistakes one sumtype for the other, or does something else weird... Perhaps I should just dustmite and see what comes...

https://d.godbolt.org/z/3ej5G6Mf7

This bug is due to using `@naked` and the resulting IR generation not dealing with that properly. With `@naked` we load from passed parameter address instead of the usual loading...

Not sure how much we want/should support with `@naked`.

I do consider it a bug. If we don't support this usage / it's buggy, then it's better to emit a compile error for it than to leave it unfixed.