digitalmars.D.bugs - [Issue 8645] New: ICE: Assertion failed: (0), function totym, file glue.c, line 1150.
- d-bugmail puremagic.com (22/22) Sep 12 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8645
- d-bugmail puremagic.com (7/7) Sep 12 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8645
- d-bugmail puremagic.com (18/18) Sep 12 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8645
- d-bugmail puremagic.com (14/14) Sep 16 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8645
- d-bugmail puremagic.com (13/13) Sep 17 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8645
- d-bugmail puremagic.com (9/9) Nov 14 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8645
http://d.puremagic.com/issues/show_bug.cgi?id=8645 Summary: ICE: Assertion failed: (0), function totym, file glue.c, line 1150. Product: D Version: D2 Platform: x86_64 OS/Version: Mac OS X Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: gileadis gmail.com --- Comment #0 from David Gileadi <gileadis gmail.com> 2012-09-12 07:57:04 PDT --- I'm getting an ICE with the attached code (reduced by the amazing DustMite). It has to do with building a delegate literal. I'm working on building a mock objects framework inspired by Mockito. DustMite reduced the code enough that it's a bit nonsensical in the attachment, but it does reveal the error. Found in DMD 2.060 on Mac OSX Mountain Lion. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 12 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8645 --- Comment #1 from David Gileadi <gileadis gmail.com> 2012-09-12 07:57:48 PDT --- Created an attachment (id=1144) Code that reveals the bug. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 12 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8645 bearophile_hugs eml.cc changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bearophile_hugs eml.cc --- Comment #2 from bearophile_hugs eml.cc 2012-09-12 09:29:42 PDT --- Further manual reduction: template TypeTuple(TList...) { alias TList TypeTuple; } void main() { alias TypeTuple!(int) Foo; int bar; Foo args = cast(Foo)bar; } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 12 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8645 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice, pull Platform|x86_64 |All OS/Version|Mac OS X |All --- Comment #3 from Kenji Hara <k.hara.pg gmail.com> 2012-09-16 05:08:55 PDT --- https://github.com/D-Programming-Language/dmd/pull/1120 Current dmd doesn't detect invalid casting in front-end. I think this is one of the big issue. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 16 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8645 --- Comment #4 from github-bugzilla puremagic.com 2012-09-17 06:45:25 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/2da26af56e702bf595b7b42e3a464ebf0016d7b9 fix Issue 8645 - ICE: Assertion failed: (0), function totym, file glue.c, line 1150. https://github.com/D-Programming-Language/dmd/commit/da5bba672eaf0d9aa224aeabe524336f4e3e9e16 Merge pull request #1120 from 9rnsr/fix8645 Issue 8645 - ICE: Assertion failed: (0), function totym, file glue.c, line 1150. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 17 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8645 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Nov 14 2012