Martin Kinkelin
Martin Kinkelin
Reverting #14844, which caused such missing TypeInfos, *and* making sure the special TypeInfo members are fully analyzed and ready for codegen (otherwise hitting an assertion). --- Currently just checking if...
Just like we already do in `core.stdc.stdint`.
Using the new CI runners (awesome performance!).
A little test wrt. #3901. But `-lm` is part of `llvm-config --system-libs`, with both official LLVM 16 and 17. And this then leads to `ld: library 'm' not found` unless...
```D struct S { ~this() {} } int foo(S[] ss...) { return 0; } void bar(bool a) { const r = a ? foo(S()) : foo(S()); } ``` The frontend...
Fixes isse #4570.
Analogous to #4420.
It's currently at least 32 bits, controlled from the frontend. Motivated by https://forum.dlang.org/thread/[email protected]. FYI @dukc. My thinking was that if we kept the min 32-bit `size_t`, it'd also mean that...