public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352
@ 2012-10-07  9:45 dcb314 at hotmail dot com
  2012-10-07 11:32 ` [Bug c++/54844] " markus at trippelsdorf dot de
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: dcb314 at hotmail dot com @ 2012-10-07  9:45 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 54844
           Summary: ice tsubst_copy, at cp/pt.c:12352
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: dcb314@hotmail.com


Created attachment 28379
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=28379
gzipped C++ source code

The original source code I provided for bug #46240 seems to 
now cause an ice.

oct-norm.cc: In instantiation of ‘R vector_norm(const MArray<T>&, R) [with T =
double; R = double]’:
oct-norm.cc:521:75:   required from here
oct-norm.cc:309:234: internal compiler error: in tsubst_copy, at cp/pt.c:12352
0x58361a tsubst_copy
    ../../src/trunk/gcc/cp/pt.c:12352
0x5745c2 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
    ../../src/trunk/gcc/cp/pt.c:13479
0x57321c tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
    ../../src/trunk/gcc/cp/pt.c:13504
0x574139 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
    ../../src/trunk/gcc/cp/pt.c:13459
0x5736c9 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
    ../../src/trunk/gcc/cp/pt.c:13863
0x57aa9a tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:13159
0x57b61a tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12792
0x57b6ce tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12814
0x57c56d tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12800
0x57b6ce tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12814
0x57c56d tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12800
0x57b753 tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12630
0x57b6ce tsubst_expr
    ../../src/trunk/gcc/cp/pt.c:12814
0x579966 instantiate_decl(tree_node*, int, bool)
    ../../src/trunk/gcc/cp/pt.c:18635
0x5b3e33 instantiate_pending_templates(int)
    ../../src/trunk/gcc/cp/pt.c:18734
0x5ee1ae cp_write_global_declarations()
    ../../src/trunk/gcc/cp/decl2.c:3742
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.

No special compiler flags required.

This code used to compile with trunk dated 2012 Oct 03, so 
a recent change seems to be causing the problem.


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

* [Bug c++/54844] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
@ 2012-10-07 11:32 ` markus at trippelsdorf dot de
  2012-10-08 12:04 ` [Bug c++/54844] [4.8 Regression] " rguenth at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: markus at trippelsdorf dot de @ 2012-10-07 11:32 UTC (permalink / raw)
  To: gcc-bugs


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

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-10-07 11:32:20 UTC ---
template<class>class A {};

class B : public A<double>{};

template<class T, class R>
void
vector_norm(A<T>, R)
{
  sizeof(float) ? : 0;
}
void
xnorm(B& p1)
{
  vector_norm(p1, 0);
}


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
  2012-10-07 11:32 ` [Bug c++/54844] " markus at trippelsdorf dot de
@ 2012-10-08 12:04 ` rguenth at gcc dot gnu.org
  2012-10-08 12:10 ` paolo.carlini at oracle dot com
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-10-08 12:04 UTC (permalink / raw)
  To: gcc-bugs


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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2012-10-08
   Target Milestone|---                         |4.8.0
            Summary|ice tsubst_copy, at         |[4.8 Regression] ice
                   |cp/pt.c:12352               |tsubst_copy, at
                   |                            |cp/pt.c:12352
     Ever Confirmed|0                           |1

--- Comment #2 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-10-08 12:04:24 UTC ---
Confirmed.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
  2012-10-07 11:32 ` [Bug c++/54844] " markus at trippelsdorf dot de
  2012-10-08 12:04 ` [Bug c++/54844] [4.8 Regression] " rguenth at gcc dot gnu.org
@ 2012-10-08 12:10 ` paolo.carlini at oracle dot com
  2012-10-14 22:50 ` paolo.carlini at oracle dot com
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: paolo.carlini at oracle dot com @ 2012-10-08 12:10 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #3 from Paolo Carlini <paolo.carlini at oracle dot com> 2012-10-08 12:10:26 UTC ---
REAL_TYPE remains unhandled in tsubst_copy. First blush however, I'm not sure
if we shouldn't be passing REAL_TYPEs at all, or it's just a trivial matter of
adding to the switch.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (2 preceding siblings ...)
  2012-10-08 12:10 ` paolo.carlini at oracle dot com
@ 2012-10-14 22:50 ` paolo.carlini at oracle dot com
  2012-10-14 23:23 ` paolo.carlini at oracle dot com
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: paolo.carlini at oracle dot com @ 2012-10-14 22:50 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cas43 at cs dot
                   |                            |stanford.edu

--- Comment #4 from Paolo Carlini <paolo.carlini at oracle dot com> 2012-10-14 22:50:10 UTC ---
*** Bug 54927 has been marked as a duplicate of this bug. ***


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (3 preceding siblings ...)
  2012-10-14 22:50 ` paolo.carlini at oracle dot com
@ 2012-10-14 23:23 ` paolo.carlini at oracle dot com
  2012-10-15 10:15 ` jakub at gcc dot gnu.org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: paolo.carlini at oracle dot com @ 2012-10-14 23:23 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #5 from Paolo Carlini <paolo.carlini at oracle dot com> 2012-10-14 23:23:00 UTC ---
Jakub, can you have a look to this? Seems related to your sizeof changes.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (4 preceding siblings ...)
  2012-10-14 23:23 ` paolo.carlini at oracle dot com
@ 2012-10-15 10:15 ` jakub at gcc dot gnu.org
  2012-10-20  2:23 ` bangerth at gmail dot com
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-10-15 10:15 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at gcc dot       |jakub at gcc dot gnu.org
                   |gnu.org                     |

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-10-15 10:15:06 UTC ---
Created attachment 28449
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=28449
gcc48-pr54844.patch

Untested fix.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (5 preceding siblings ...)
  2012-10-15 10:15 ` jakub at gcc dot gnu.org
@ 2012-10-20  2:23 ` bangerth at gmail dot com
  2012-10-20  6:56 ` jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bangerth at gmail dot com @ 2012-10-20  2:23 UTC (permalink / raw)
  To: gcc-bugs


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

Wolfgang Bangerth <bangerth at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bangerth at gmail dot com

--- Comment #7 from Wolfgang Bangerth <bangerth at gmail dot com> 2012-10-20 02:23:30 UTC ---
May be related to PR 54994.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (6 preceding siblings ...)
  2012-10-20  2:23 ` bangerth at gmail dot com
@ 2012-10-20  6:56 ` jakub at gcc dot gnu.org
  2012-10-20 15:26 ` vincenzo.innocente at cern dot ch
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-10-20  6:56 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-10-20 06:55:45 UTC ---
*** Bug 54994 has been marked as a duplicate of this bug. ***


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (7 preceding siblings ...)
  2012-10-20  6:56 ` jakub at gcc dot gnu.org
@ 2012-10-20 15:26 ` vincenzo.innocente at cern dot ch
  2012-10-22 11:59 ` bangerth at gmail dot com
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: vincenzo.innocente at cern dot ch @ 2012-10-20 15:26 UTC (permalink / raw)
  To: gcc-bugs


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

vincenzo Innocente <vincenzo.innocente at cern dot ch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vincenzo.innocente at cern
                   |                            |dot ch

--- Comment #9 from vincenzo Innocente <vincenzo.innocente at cern dot ch> 2012-10-20 15:26:03 UTC ---
*** Bug 54999 has been marked as a duplicate of this bug. ***


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (8 preceding siblings ...)
  2012-10-20 15:26 ` vincenzo.innocente at cern dot ch
@ 2012-10-22 11:59 ` bangerth at gmail dot com
  2012-10-22 12:04 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bangerth at gmail dot com @ 2012-10-22 11:59 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #10 from Wolfgang Bangerth <bangerth at gmail dot com> 2012-10-22 11:58:58 UTC ---
Given that this bug has been found 3 times already (and I extracted my testcase
from the widely used BOOST library), is there an ETA for a fix?
W.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (9 preceding siblings ...)
  2012-10-22 11:59 ` bangerth at gmail dot com
@ 2012-10-22 12:04 ` jakub at gcc dot gnu.org
  2012-10-22 13:05 ` bangerth at gmail dot com
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-10-22 12:04 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #11 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-10-22 12:03:45 UTC ---
It has been fixed a week ago:
http://gcc.gnu.org/ml/gcc-patches/2012-10/msg01538.html
but the patch hasn't been reviewed yet.  I'll ping it today.


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (10 preceding siblings ...)
  2012-10-22 12:04 ` jakub at gcc dot gnu.org
@ 2012-10-22 13:05 ` bangerth at gmail dot com
  2012-10-23 18:05 ` jakub at gcc dot gnu.org
  2012-10-24  9:51 ` jakub at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: bangerth at gmail dot com @ 2012-10-22 13:05 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #12 from Wolfgang Bangerth <bangerth at gmail dot com> 2012-10-22 13:05:36 UTC ---
Thanks, Jakub!


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (11 preceding siblings ...)
  2012-10-22 13:05 ` bangerth at gmail dot com
@ 2012-10-23 18:05 ` jakub at gcc dot gnu.org
  2012-10-24  9:51 ` jakub at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-10-23 18:05 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-10-23 18:05:03 UTC ---
Author: jakub
Date: Tue Oct 23 18:04:55 2012
New Revision: 192736

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=192736
Log:
    PR c++/54844
    * pt.c (tsubst_copy, tsubst_copy_and_build) <case SIZEOF_EXPR>: Use
    tsubst instead of tsubst_copy* on types.

    * g++.dg/template/sizeof14.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/template/sizeof14.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/pt.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug c++/54844] [4.8 Regression] ice tsubst_copy, at cp/pt.c:12352
  2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
                   ` (12 preceding siblings ...)
  2012-10-23 18:05 ` jakub at gcc dot gnu.org
@ 2012-10-24  9:51 ` jakub at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-10-24  9:51 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #14 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-10-24 09:51:47 UTC ---
Fixed.


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

end of thread, other threads:[~2012-10-24  9:51 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-07  9:45 [Bug c++/54844] New: ice tsubst_copy, at cp/pt.c:12352 dcb314 at hotmail dot com
2012-10-07 11:32 ` [Bug c++/54844] " markus at trippelsdorf dot de
2012-10-08 12:04 ` [Bug c++/54844] [4.8 Regression] " rguenth at gcc dot gnu.org
2012-10-08 12:10 ` paolo.carlini at oracle dot com
2012-10-14 22:50 ` paolo.carlini at oracle dot com
2012-10-14 23:23 ` paolo.carlini at oracle dot com
2012-10-15 10:15 ` jakub at gcc dot gnu.org
2012-10-20  2:23 ` bangerth at gmail dot com
2012-10-20  6:56 ` jakub at gcc dot gnu.org
2012-10-20 15:26 ` vincenzo.innocente at cern dot ch
2012-10-22 11:59 ` bangerth at gmail dot com
2012-10-22 12:04 ` jakub at gcc dot gnu.org
2012-10-22 13:05 ` bangerth at gmail dot com
2012-10-23 18:05 ` jakub at gcc dot gnu.org
2012-10-24  9:51 ` jakub at gcc dot gnu.org

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).