[Issue 6047] Segfault when struct with three or more ulongs with a toString is passed to format with at least two substitution clauses with -m64.

2012-04-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6047 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 6047] Segfault when struct with three or more ulongs with a toString is passed to format with at least two substitution clauses with -m64.

2011-11-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6047 --- Comment #7 from Nick Sabalausky 2011-11-21 08:46:34 PST --- I think the root cause of this might be issue 6983. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: --

[Issue 6047] Segfault when struct with three or more ulongs with a toString is passed to format with at least two substitution clauses with -m64.

2011-11-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6047 --- Comment #6 from Nick Sabalausky 2011-11-21 07:59:44 PST --- Issue 6576 may be related to this. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 6047] Segfault when struct with three or more ulongs with a toString is passed to format with at least two substitution clauses with -m64.

2011-11-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6047 --- Comment #5 from Nick Sabalausky 2011-11-21 07:44:59 PST --- The format string can be blank and this bug will still be triggered. So a slight reduction is: import std.string; struct A { ulong a, b, c; string toString() { return ""; } } v

[Issue 6047] Segfault when struct with three or more ulongs with a toString is passed to format with at least two substitution clauses with -m64.

2011-11-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6047 Nick Sabalausky changed: What|Removed |Added Severity|major |critical --- Comment #4 from Nick Sa