dmd icon indicating copy to clipboard operation
dmd copied to clipboard

dmd D Programming Language compiler

Results 301 dmd issues
Sort by recently updated
recently updated
newest added

…d temporary Shouldn't take a pointer into an object about to be destructed.

Bug Fix

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...

stalled
documentation

There was also a bug here in that real literals did not get a suffix attached.

Enhancement

Signed-off-by: Luís Ferreira

Easy Review
Refactoring

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...

Needs Work
Trivial
Needs Rebase
stalled

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...

Needs Work
Needs Changelog
Needs Tests