[Issue 3544] optlink termination 0041338f with recursive nested functions

2017-01-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3544 Walter Bright changed: What|Removed |Added Keywords||Optlink --

[Issue 3544] optlink termination 0041338f with recursive nested functions

2009-11-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 Don changed: What|Removed |Added Summary|optlink unexpected |optlink termination |terminatio

[Issue 3544] optlink termination 0041338f with recursive nested functions

2009-11-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #9 from Don 2009-11-25 05:29:15 PST --- Even smaller test case. Seems it happens with a depth around 512; it's probably exceeding the maximum symbol length. --- char[] foo(int n) { return "void abcde() {" ~ ( n>0 ? foo(n-1): "") ~

[Issue 3544] optlink termination 0041338f with recursive nested functions

2009-11-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 Walter Bright changed: What|Removed |Added CC||bugzi...@digitalmars.com --- Comment #

[Issue 3544] optlink termination 0041338f with recursive nested functions

2009-12-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #11 from ante...@freemail.hu 2009-12-12 00:06:04 PST --- Hi, Should I repost my example? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-01-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 Don changed: What|Removed |Added Keywords||ice-on-valid-code --- Comment #12 from Don 2010

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-02-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #13 from ante...@freemail.hu 2010-02-11 05:23:05 PST --- Hi, What should I do so it gets fixed? I mean this bug. I reported this in November. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- Yo

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-02-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #14 from Don 2010-02-11 08:33:38 PST --- (In reply to comment #13) > Hi, > > What should I do so it gets fixed? I mean this bug. > I reported this in November. This is in the queue of critical but hard-to-fix and relatively obscur

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-02-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #15 from ante...@freemail.hu 2010-02-11 09:09:12 PST --- A clear error message would suffice. How could I expect more? It would not be bad if the stack size for ctfre could be set? Is there a way to set the stack size for ctfe?? --

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-02-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #16 from ante...@freemail.hu 2010-02-11 09:09:56 PST --- A clear error message would suffice. How could I expect more? It would not be bad if the stack size for ctfre could be set? Is there a way to set the stack size for ctfe?? --

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-09-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 --- Comment #17 from Walter Bright 2010-09-01 19:01:47 PDT --- I cannot reproduce this problem. Please show exactly what commands are given to dmd and the linker. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email

[Issue 3544] optlink termination 0041338f with recursive nested functions

2010-09-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3544 Don changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 3544] optlink termination 0041338f with recursive nested functions

2014-04-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3544 Walter Bright changed: What|Removed |Added Version|1.051 |D1 --