[Issue 2773] ICE(go.c) array assignment through a pointer, only with -O.

2014-04-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2773 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Version|1.041 |D1 --

[Issue 2773] ICE(go.c) array assignment through a pointer, only with -O.

2009-10-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2773 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 2773] ICE(go.c) array assignment through a pointer, only with -O.

2009-10-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2773 Don clugd...@yahoo.com.au changed: What|Removed |Added Keywords||patch --- Comment #8 from

[Issue 2773] ICE(go.c) array assignment through a pointer, only with -O.

2009-10-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2773 --- Comment #7 from Don clugd...@yahoo.com.au 2009-10-05 03:12:06 PDT --- Even simpler test case, this one fails on both D1.033 and 1.048. int[4]* get(){ return null; } void main() { int[4]* p = get(); (*p)[] = 0; (*p)[] = 0; } --

[Issue 2773] ICE(go.c) array assignment through a pointer, only with -O.

2009-05-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2773 Don clugd...@yahoo.com.au changed: What|Removed |Added Summary|ICE(go.c) compiling a big |ICE(go.c) array assignment