<p dir="ltr">On 12 Nov 2015 10:25 pm, "David Nadlinger via Digitalmars-d" <<a href="mailto:digitalmars-d@puremagic.com">digitalmars-d@puremagic.com</a>> wrote:<br>
><br>
> On Thursday, 12 November 2015 at 21:16:25 UTC, Walter Bright wrote:<br>
>><br>
>> It's more than that - dmd's optimizer is designed to make use of the guarantees of a pure function. Since C/C++ do not have pure functions, ldc/gdc's optimizer may not have that capability.<br>
><br>
><br>
> Oh, GCC has had similar notions as a non-standard attribute for ages, and LLVM since its inception.<br>
><br>
> At least for LDC, the reason why we do not currently lower many of the qualifiers like pure, nothrow, immutable, etc. is that LLVM will ruthlessly consider your code to exhibit undefined behavior if you try to be clever and violate them, subsequently optimizing based on that. In other words, if you cast away const/immutable and modify a variable, for instance, you might find that the entire function body magically disappears under your feet.<br>
><br>
> Maybe it is time to revisit this, though, but last time I tried it broke druntime/Phobos in a couple of places.<br>
></p>
<p dir="ltr">Same here, and for some very surprising reasons from what I recall.</p>