[Issue 7949] New: DMD segfaults when compiling this

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Apr 20 09:53:44 PDT 2012


http://d.puremagic.com/issues/show_bug.cgi?id=7949

           Summary: DMD segfaults when compiling this
           Product: D
           Version: D2
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: suicidenet at xited.de


--- Comment #0 from Zoadian <suicidenet at xited.de> 2012-04-20 09:54:41 PDT ---
DMD 2.059 segfaults when compiling this:

import std.stdio;
import std.math;
import core.simd;

void main()
{
    int[4] o = [1,2,3];
    int4 v1;
    v1.array = o;
    int4 v2;
    v2.array = o;



    auto r = __simd(XMM.ADDPS, v1,v2);

    writeln(r.array); //this causes a segmentation fault when compiling
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list