[Issue 2549] Segfault on array multiplication.

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2549

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.022   |D2

--


[Issue 2549] Segfault on array multiplication.

2010-05-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2549


Don  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED


--- Comment #4 from Don  2010-05-05 19:05:22 PDT ---
Fixed DMD2.044

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


[Issue 2549] Segfault on array multiplication.

2010-04-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2549


Walter Bright  changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com


--- Comment #3 from Walter Bright  2010-04-29 
21:05:47 PDT ---
Changeset 460

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


[Issue 2549] Segfault on array multiplication.

2010-04-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2549


Don  changed:

   What|Removed |Added

   Keywords||patch
 CC||clugd...@yahoo.com.au


--- Comment #2 from Don  2010-04-28 21:20:06 PDT ---
The patch for bug 3522 fixes this.

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


[Issue 2549] Segfault on array multiplication.

2010-01-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2549


Hoenir  changed:

   What|Removed |Added

 CC||mrmoc...@gmx.de


--- Comment #1 from Hoenir  2010-01-17 17:28:45 PST ---
Also note the following:

float[] a = [0.f, 0.5f, 1.0f, 1.5f, 2.0f, 2.5f];
float[] b = [0.f, 0.5f, 1.0f, 1.5f, 2.0f, 2.5f];

writeln(a[] * b[]); // compiles, but results in access violation
writeln(a[] + b[]); // array operation a[] + b[] not implemented


This bug also is in relation to
http://d.puremagic.com/issues/show_bug.cgi?id=3066

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