[Issue 17821] atomicStore is buggy when target is larger than source

2017-09-10 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17821 Eyal changed: What|Removed |Added CC||e...@weka.io, to...@weka.io --

[Issue 17821] atomicStore is buggy when target is larger than source

2017-09-10 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17821 Tomer Filiba (weka) changed: What|Removed |Added Keywords||industry --

[Issue 17821] atomicStore is buggy when target is larger than source

2017-09-10 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17821 johanenge...@weka.io changed: What|Removed |Added CC||johanenge...@weka.io --- Comment #1 fr

[Issue 17821] atomicStore is buggy when target is larger than source

2017-09-11 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17821 --- Comment #2 from johanenge...@weka.io --- Fixed in LDC 1.4.0. The remaining issue is compilation error with DMD for: ``` import core.atomic; shared ulong x; atomicStore(x, 0); ``` --