https://issues.dlang.org/show_bug.cgi?id=21676

Dennis <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
                 OS|Windows                     |All

--- Comment #1 from Dennis <[email protected]> ---
Just this:
```
double2 fun(double2 a, double2 b)
{
    a[0] = (a[0] < b[0]) ? a[0] : b[0];
    return a;
}
```
Already fails with `dmd -O` on linux:

```
findreg(0, line=180, file='src/dmd/backend/cgxmm.d', function =
'_D5test_3funFNhG2dQfZQi')
dmd: src/dmd/backend/cgcod.d:1868: Assertion `0' failed.
```

--

Reply via email to