[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 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 changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[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 changed: What|Removed |Added Keywords||patch --- Comment #8 from Don 2009-10-06 00:17:

[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 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; } -- Configure issuemail:

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

2009-08-31 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2773 Don changed: What|Removed |Added Severity|regression |critical --- Comment #6 from Don 2009-08-31

[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 changed: What|Removed |Added Summary|ICE(go.c) compiling a big |ICE(go.c) array assignment |pro