[Bug c++/53658] internal compiler error -- segmentation fault

2014-05-13 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53658

Paolo Carlini paolo.carlini at oracle dot com changed:

   What|Removed |Added

 CC||florent.hivert at lri dot fr

--- Comment #6 from Paolo Carlini paolo.carlini at oracle dot com ---
*** Bug 60210 has been marked as a duplicate of this bug. ***


[Bug c++/53658] internal compiler error -- segmentation fault

2013-06-07 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53658

Paolo Carlini paolo.carlini at oracle dot com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Paolo Carlini paolo.carlini at oracle dot com ---
Fixed for 4.9.0.


[Bug c++/53658] internal compiler error -- segmentation fault

2013-06-06 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53658

Paolo Carlini paolo.carlini at oracle dot com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|unassigned at gcc dot gnu.org  |paolo.carlini at oracle 
dot com
   Target Milestone|--- |4.9.0

--- Comment #4 from Paolo Carlini paolo.carlini at oracle dot com ---
Mine.


[Bug c++/53658] internal compiler error -- segmentation fault

2012-06-14 Thread markus at trippelsdorf dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53658

--- Comment #2 from Markus Trippelsdorf markus at trippelsdorf dot de 
2012-06-14 07:04:54 UTC ---
(In reply to comment #1)
 Reduced:
 
  % cat test.ii
 struct A;
 template typename using Foo = const A;
 template typename Item Foo Item;
^^
If one adds bar() to the last line above, then clang++ and Intel's icpc
compile it without problems, while gcc still crashes.


[Bug c++/53658] internal compiler error -- segmentation fault

2012-06-14 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53658

Jakub Jelinek jakub at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2012-06-14
 CC||dodji at gcc dot gnu.org,
   ||jakub at gcc dot gnu.org
 Ever Confirmed|0   |1

--- Comment #3 from Jakub Jelinek jakub at gcc dot gnu.org 2012-06-14 
07:44:59 UTC ---
Seems this ICEs since template alias support has been checked in:
http://gcc.gnu.org/viewcvs?root=gccview=revrev=181118
Before that it has been rejected.


[Bug c++/53658] internal compiler error -- segmentation fault

2012-06-13 Thread markus at trippelsdorf dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53658

Markus Trippelsdorf markus at trippelsdorf dot de changed:

   What|Removed |Added

 CC||markus at trippelsdorf dot
   ||de

--- Comment #1 from Markus Trippelsdorf markus at trippelsdorf dot de 
2012-06-13 17:07:13 UTC ---
Reduced:

 % cat test.ii
struct A;
template typename using Foo = const A;
template typename Item Foo Item;

 % c++ -std=c++11 test.ii
test.ii:3:35: internal compiler error: Segmentation fault
 template typename Item Foo Item;
   ^
Please submit a full bug report,
with preprocessed source if appropriate.