[Issue 9209] ice(symbol.c) with const struct heap allocation

2013-04-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9209


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com
   Platform|x86 |All
 OS/Version|Windows |All


--- Comment #2 from Walter Bright bugzi...@digitalmars.com 2013-04-16 
23:03:06 PDT ---
https://github.com/D-Programming-Language/dmd/pull/1904

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 9209] ice(symbol.c) with const struct heap allocation

2013-04-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9209


Kenji Hara k.hara...@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: ---


[Issue 9209] ice(symbol.c) with const struct heap allocation

2013-04-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9209



--- Comment #3 from github-bugzi...@puremagic.com 2013-04-17 22:32:40 PDT ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/baa93d923a8386dc8d3d3db43dd17c4115ef8b29
fix Issue 9209 - ice(symbol.c) with const struct heap allocation

https://github.com/D-Programming-Language/dmd/commit/202a28b20900a97d5a13ccbfb5a0be3cf9f28507
Merge pull request #1904 from WalterBright/fix9209

fix Issue 9209 - ice(symbol.c) with const struct heap allocation

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 9209] ice(symbol.c) with const struct heap allocation

2013-01-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9209


yebblies yebbl...@gmail.com changed:

   What|Removed |Added

   Keywords||ice
 CC||yebbl...@gmail.com
Summary|[ICE](symbol.c line 1025)   |ice(symbol.c) with const
   |with const struct heap  |struct heap allocation
   |allocation  |
   Severity|normal  |critical


--- Comment #1 from yebblies yebbl...@gmail.com 2013-01-14 22:18:20 EST ---
Does not need templates:

struct Foo { int x; }
void bar(const Foo*) {}
void main () {
const f = new Foo(1);
bar(f);
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---