[Issue 12692] Add support for __simd in for 32-bits targets

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Sun May 4 04:26:20 PDT 2014


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

--- Comment #3 from ponce <aliloko at gmail.com> ---
Using this program:

----

import core.simd;

void main()
{
    float4 a;
    a = __simd(XMM.SQRTSS, a);
}

----

$dmd test.d 
test.d(6): Error: undefined identifier __simd

$dmd test.d -m64
[compile as expected]

--


More information about the Digitalmars-d-bugs mailing list