https://issues.dlang.org/show_bug.cgi?id=21474
--- Comment #1 from ponce <[email protected]> --- Found this bug another time in another incarnation. Build with dmd -O for reproducing. --------- test4.d ------------- import core.simd; int4 cmpss_repro(float4 a) { int4 result; result.ptr[0] = (1 > a.array[0]) ? -1 : 0; return result; } ------------------------------- --
