[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4389 Andrei Alexandrescu changed: What|Removed |Added Version|D1 & D2 |D2 --

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

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

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2011-01-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4389 --- Comment #6 from Don 2011-01-19 23:59:47 PST --- Fails on D1 because dchar, wchar implicitly convert to char, even if they don't fit. PATCH: expression.c, CatAssignExp::semantic(), line 8574. The two 'else' clauses need to be swapped, so th

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2010-12-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4389 Walter Bright changed: What|Removed |Added Version|D2 |D1 & D2 --- Comment #5 from Walter Bri

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2010-12-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4389 Walter Bright changed: What|Removed |Added CC||bugzi...@digitalmars.com --- Comment #

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2010-11-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4389 --- Comment #3 from Don 2010-11-23 12:33:23 PST --- Created an attachment (id=827) Patch against D2 svn 767 Although the patch is relatively long, it is very mundane. The patch adds these functions to utf.c (they are copied from druntime). Th

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2010-11-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4389 --- Comment #2 from Don 2010-11-23 00:57:51 PST --- *** Issue 4390 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: --

[Issue 4389] ICE(constfold.c, expression.c), or wrong code: string~=dchar in CTFE

2010-11-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4389 Don changed: What|Removed |Added Keywords||ice-on-valid-code Summary|CTFE: Append