On Monday, 7 November 2016 at 18:38:14 UTC, ag0aep6g wrote:
I've reduced it to this:
----
void main() {}
void f()
{
import core.atomic: atomicOp;
shared size_t workUnitIndex;
atomicOp!"+="(workUnitIndex, 1);
}
----
Which crashes when compiled with -profile. Looks like issue
14511 covers this (comment 5):
https://issues.dlang.org/show_bug.cgi?id=14511#c5
Ok... I'm impressed. Thanks for clarification :)
But something changed nevertheless... I have the problem only
since the update from 2.071.2 to 2.072.0.
Is this worth mentioning in a comment of the issue somehow?