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: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Zoadian <[email protected]> 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: -------