Thread overview
[Issue 18867] backend/cgcod.c crash on assignment to vector element
May 16, 2018
kinke@gmx.net
May 16, 2018
ag0aep6g
Dec 22, 2020
Walter Bright
Dec 23, 2020
Dlang Bot
Dec 23, 2020
Dlang Bot
May 16, 2018
https://issues.dlang.org/show_bug.cgi?id=18867

kinke@gmx.net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Optimizer crash on          |backend/cgcod.c crash on
                   |assignment to vector        |assignment to vector
                   |element                     |element

--
May 16, 2018
https://issues.dlang.org/show_bug.cgi?id=18867

ag0aep6g <ag0aep6g@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice
                 CC|                            |ag0aep6g@gmail.com

--- Comment #1 from ag0aep6g <ag0aep6g@gmail.com> ---
Without the import:

----
alias __vector(ulong[2]) ulong2;

ulong2 foo(ulong s)
{
    ulong2 v;
    v[0] = s;
    return v;
}
----

--
December 22, 2020
https://issues.dlang.org/show_bug.cgi?id=18867

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |backend, SIMD
                 CC|                            |bugzilla@digitalmars.com

--
December 23, 2020
https://issues.dlang.org/show_bug.cgi?id=18867

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #2 from Dlang Bot <dlang-bot@dlang.rocks> ---
@WalterBright created dlang/dmd pull request #12047 "fix Issue 18867 - backend/cgcod.c crash on assignment to vector element" fixing this issue:

- fix Issue 18867 - backend/cgcod.c crash on assignment to vector element

https://github.com/dlang/dmd/pull/12047

--
December 23, 2020
https://issues.dlang.org/show_bug.cgi?id=18867

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/dmd pull request #12047 "fix Issue 18867 - backend/cgcod.c crash on assignment to vector element" was merged into master:

- 67553e66427679009e8afba7abf3c9030e122dbc by Walter Bright:
  fix Issue 18867 - backend/cgcod.c crash on assignment to vector element

https://github.com/dlang/dmd/pull/12047

--