dmd
dmd copied to clipboard
dmd D Programming Language compiler
…d temporary Shouldn't take a pointer into an object about to be destructed.
We've just been hit by a brownout.
These switches are surprisingly useful in understanding how the dmd backend generates code. They used to be available only in debug builds of dmd, but they are so useful I...
There was also a bug here in that real literals did not get a suffix attached.
Signed-off-by: Luís Ferreira
Some C standard libary headers on macOS have versions of C standard library functions like qsort that take a clang block instead of a function pointer. ImportC does not implement...
This adds a preview flag but it shouldn't be merged just yet but you can play with it yourself. I'll add a markdown file that explains the design in more...
Adds two new functions for the power operator: ``` typeof(X * Y) pow(X, Y) if (IntOrFloat!X && Int!Y); typeof(X * Y) pow(X, Y) if (IntOrFloat!X && Float!Y); ``` Lowers `x...