public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/52233] New: ICE segmentation fault with non-recursive templates
@ 2012-02-13 14:35 pubby.8 at gmail dot com
  2012-02-20 21:40 ` [Bug c++/52233] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pubby.8 at gmail dot com @ 2012-02-13 14:35 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52233

             Bug #: 52233
           Summary: ICE segmentation fault with non-recursive templates
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: pubby.8@gmail.com


I'm getting a compiler segfault with the following code:

template <typename t>
struct foo {
  template <template <typename...> class... xs>
  using type = int;
};

template <typename t, template <typename...> class... xs>
struct bar {
  using type = typename foo<t>::template type<xs...>;
};

bar<int, foo> x;

> In instantiation of ‘struct bar<int, foo>’:
> 12:15:   required from here
> 7:55: internal compiler error: Segmentation fault

If I manually expand the parameter 't' then it compiles:

using type = typename foo<int>::template type<xs...>;


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/52233] ICE segmentation fault with non-recursive templates
  2012-02-13 14:35 [Bug c++/52233] New: ICE segmentation fault with non-recursive templates pubby.8 at gmail dot com
@ 2012-02-20 21:40 ` pinskia at gcc dot gnu.org
  2012-10-04 23:37 ` [Bug c++/52233] ICE segmentation fault with using-declaration paolo.carlini at oracle dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-02-20 21:40 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52233

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2012-02-20
     Ever Confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> 2012-02-20 21:39:43 UTC ---
Confirmed.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/52233] ICE segmentation fault with using-declaration
  2012-02-13 14:35 [Bug c++/52233] New: ICE segmentation fault with non-recursive templates pubby.8 at gmail dot com
  2012-02-20 21:40 ` [Bug c++/52233] " pinskia at gcc dot gnu.org
@ 2012-10-04 23:37 ` paolo.carlini at oracle dot com
  2012-10-04 23:48 ` paolo at gcc dot gnu.org
  2012-10-04 23:52 ` paolo.carlini at oracle dot com
  3 siblings, 0 replies; 5+ messages in thread
From: paolo.carlini at oracle dot com @ 2012-10-04 23:37 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52233

--- Comment #2 from Paolo Carlini <paolo.carlini at oracle dot com> 2012-10-04 23:37:19 UTC ---
This works in 4.7.2 and mainline. I'm adding the testcase to mainline and
closing the PR.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/52233] ICE segmentation fault with using-declaration
  2012-02-13 14:35 [Bug c++/52233] New: ICE segmentation fault with non-recursive templates pubby.8 at gmail dot com
  2012-02-20 21:40 ` [Bug c++/52233] " pinskia at gcc dot gnu.org
  2012-10-04 23:37 ` [Bug c++/52233] ICE segmentation fault with using-declaration paolo.carlini at oracle dot com
@ 2012-10-04 23:48 ` paolo at gcc dot gnu.org
  2012-10-04 23:52 ` paolo.carlini at oracle dot com
  3 siblings, 0 replies; 5+ messages in thread
From: paolo at gcc dot gnu.org @ 2012-10-04 23:48 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52233

--- Comment #3 from paolo at gcc dot gnu.org <paolo at gcc dot gnu.org> 2012-10-04 23:48:20 UTC ---
Author: paolo
Date: Thu Oct  4 23:48:16 2012
New Revision: 192109

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=192109
Log:
2012-10-04  Paolo Carlini  <paolo.carlini@oracle.com>

    PR c++/52233
    * g++.dg/cpp0x/alias-decl-23.C: New.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/alias-decl-23.C
Modified:
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/52233] ICE segmentation fault with using-declaration
  2012-02-13 14:35 [Bug c++/52233] New: ICE segmentation fault with non-recursive templates pubby.8 at gmail dot com
                   ` (2 preceding siblings ...)
  2012-10-04 23:48 ` paolo at gcc dot gnu.org
@ 2012-10-04 23:52 ` paolo.carlini at oracle dot com
  3 siblings, 0 replies; 5+ messages in thread
From: paolo.carlini at oracle dot com @ 2012-10-04 23:52 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52233

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.7.1

--- Comment #4 from Paolo Carlini <paolo.carlini at oracle dot com> 2012-10-04 23:52:24 UTC ---
Done.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-10-04 23:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-13 14:35 [Bug c++/52233] New: ICE segmentation fault with non-recursive templates pubby.8 at gmail dot com
2012-02-20 21:40 ` [Bug c++/52233] " pinskia at gcc dot gnu.org
2012-10-04 23:37 ` [Bug c++/52233] ICE segmentation fault with using-declaration paolo.carlini at oracle dot com
2012-10-04 23:48 ` paolo at gcc dot gnu.org
2012-10-04 23:52 ` paolo.carlini at oracle dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).