[Issue 2199] Segfault using array operation in function call

2009-05-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2199


bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #5 from bugzi...@digitalmars.com  2009-05-02 08:50 ---
Fixed dmd 1.044


-- 



[Issue 2199] Segfault using array operation in function call

2009-04-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2199





--- Comment #4 from clugd...@yahoo.com.au  2009-04-18 01:04 ---
Fixed DMD2.028. Not yet fixed in D1.


-- 



[Issue 2199] Segfault using array operation in function call

2009-04-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2199


clugd...@yahoo.com.au changed:

   What|Removed |Added

   Keywords||patch




--- Comment #3 from clugd...@yahoo.com.au  2009-04-02 10:47 ---
Problem is in elem *AddExp::toElem(IRState *irs)
e2ir.c, line 1925 -- returns an uninitialized variable e.


error(Array operation %s not implemented, toChars());
return e1-toElem(irs); // prevent segfault


--