[Bug c++/52844] ICE

2014-04-10 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Paolo Carlini changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/52844] ICE

2014-04-10 Thread paolo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 --- Comment #11 from paolo at gcc dot gnu.org --- Author: paolo Date: Thu Apr 10 14:06:36 2014 New Revision: 209276 URL: http://gcc.gnu.org/viewcvs?rev=209276&root=gcc&view=rev Log: 2014-04-10 Paolo Carlini PR c++/52844 * g++.dg/cpp0x

[Bug c++/52844] ICE

2014-04-10 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Paolo Carlini changed: What|Removed |Added Target Milestone|--- |4.9.0 --- Comment #10 from Paolo Carlini

[Bug c++/52844] ICE

2013-07-28 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Paolo Carlini changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned at

[Bug c++/52844] ICE

2013-07-27 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Paolo Carlini changed: What|Removed |Added CC||lin90162 at gmail dot com --- Comment #8

[Bug c++/52844] ICE

2012-11-28 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Paolo Carlini changed: What|Removed |Added CC||jondreads at gmail dot com ---

[Bug c++/52844] ICE

2012-10-15 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 --- Comment #6 from Paolo Carlini 2012-10-15 09:58:06 UTC --- Of course this is also enough: template < class > struct V { }; template < int...Is > void f ( V < Is...>) { } auto g ( ) -> decltype ( f ( V < long > ( ) ) ) ; and declt

[Bug c++/52844] ICE

2012-10-12 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Paolo Carlini changed: What|Removed |Added Keywords||ice-on-invalid-code

[Bug c++/52844] ICE

2012-10-12 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 --- Comment #5 from Paolo Carlini 2012-10-12 15:53:36 UTC --- Thanks guys!

[Bug c++/52844] ICE

2012-10-12 Thread glisse at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 --- Comment #4 from Marc Glisse 2012-10-12 15:52:16 UTC --- template < class > struct V { }; template < int... > struct tuple ; template < int...Is > void f ( V < Is...>) { } auto g ( ) -> decltype ( f ( V < long > ( ) ) ) ;

[Bug c++/52844] ICE

2012-10-12 Thread markus at trippelsdorf dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 Markus Trippelsdorf changed: What|Removed |Added CC||markus at trippelsdorf dot

[Bug c++/52844] ICE

2012-10-12 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 --- Comment #2 from Paolo Carlini 2012-10-12 15:06:38 UTC --- Dave, if we don't reduce the size of the testcase it will take a lot of time for somebody to look into this. Do you have anything smaller? (creduce is supposed to work pretty we

[Bug c++/52844] ICE

2012-04-03 Thread dave at boostpro dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52844 --- Comment #1 from Dave Abrahams 2012-04-03 15:06:08 UTC --- I think the problem is simple: missing initial type argument to vector_c in: template auto apply_tuple(F f, Tuple const & t, vector_c)