public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628
@ 2004-06-29 11:10 gcc-bugzilla at gcc dot gnu dot org
  2004-06-29 11:17 ` [Bug c++/16261] [3.4 regression] " reichelt at gcc dot gnu dot org
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: gcc-bugzilla at gcc dot gnu dot org @ 2004-06-29 11:10 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1778 bytes --]



G++ 3.4 enjoys an ICE when compiling the following code with -g:

namespace temp
{
  template <class Ident_>
  struct Map
  {
  };

  typedef Map <int> TempMap;

}

extern temp::TempMap tempmap;

void
instructions_display (void)
{
  struct NolimipsTempMap
    : public temp::TempMap
  {
    NolimipsTempMap (const temp::TempMap &tm)
      : temp::TempMap (tm)
    {
    }
  };

  NolimipsTempMap tm (tempmap);
}

No other version of GCC I use faces this problem (3.3, or 3.5).

Environment:
System: Linux tchernobyl 2.4.18-bf2.4 #1 Son Apr 14 09:53:28 CEST 2002 i686 GNU/Linux
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: /home/lrde/stud/burrus_n/work/lrde/ext/gcc/configure --prefix=/home/lrde/lrde/usr/gcc-3.4 --enable-languages=c,c++

How-To-Repeat:
% g++-3.4 -c tasks.cc
% g++-3.4 -c -g tasks.cc
tasks.cc:27: internal compiler error: in output_die, at dwarf2out.c:6628
SVP soumettre un rapport complet d'anomalies,
avec le source pré-traité si cela est approprié.
Consulter <URL:http://gcc.gnu.org/bugs.html> pour les instructions.
------- Additional Comments From akim at lrde dot epita dot fr  2004-06-29 10:51 -------
Fix:
Note that the namespace is needed.

-- 
           Summary: ICE: output_die, at dwarf2out.c:6628
           Product: gcc
           Version: 3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: akim at lrde dot epita dot fr
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
@ 2004-06-29 11:17 ` reichelt at gcc dot gnu dot org
  2004-06-29 14:19 ` reichelt at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-06-29 11:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-06-29 11:11 -------
Confirmed.

You don't even need inheritance to crash the compiler:

===========================================
namespace N
{
    template<int> struct A {};
    typedef A<0> B;
}

void foo()
{
    struct C
    {
        C(const N::B&) {}
    };

    N::B b;
    C c(b);
}
===========================================


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
           Severity|normal                      |critical
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code, monitored
      Known to fail|                            |3.4.0 3.4.1
      Known to work|                            |3.3.4 3.5.0
   Last reconfirmed|0000-00-00 00:00:00         |2004-06-29 11:11:02
               date|                            |
            Summary|ICE: output_die, at         |[3.4 regression] ICE:
                   |dwarf2out.c:6628            |output_die, at
                   |                            |dwarf2out.c:6628
   Target Milestone|---                         |3.4.2
            Version|3.4                         |3.4.0


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
  2004-06-29 11:17 ` [Bug c++/16261] [3.4 regression] " reichelt at gcc dot gnu dot org
@ 2004-06-29 14:19 ` reichelt at gcc dot gnu dot org
  2004-06-29 14:27 ` pinskia at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-06-29 14:19 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-06-29 14:13 -------
Btw, the bug was fixed on mainline by Devang's patch
http://gcc.gnu.org/ml/gcc-cvs/2004-01/msg01394.html

Is a backport to the 3.4 branch feasible?


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dpatel at gcc dot gnu dot
                   |                            |org


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
  2004-06-29 11:17 ` [Bug c++/16261] [3.4 regression] " reichelt at gcc dot gnu dot org
  2004-06-29 14:19 ` reichelt at gcc dot gnu dot org
@ 2004-06-29 14:27 ` pinskia at gcc dot gnu dot org
  2004-06-29 15:48 ` akim at epita dot fr
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-29 14:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-29 14:25 -------
Note his patch adds a feature and a huge amount of extra debuging info.

-- 


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-06-29 14:27 ` pinskia at gcc dot gnu dot org
@ 2004-06-29 15:48 ` akim at epita dot fr
  2004-07-02 23:58 ` reichelt at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: akim at epita dot fr @ 2004-06-29 15:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From akim at epita dot fr  2004-06-29 15:47 -------
Subject: Re:  New: ICE: output_die, at dwarf2out.c:6628


It is not related to the bug per se, but I'm unsure where I should
report this:

  |From: Bugzilla Mail Interface <bugmail@gcc.gnu.org>
  |Subject: Bugzilla success (ID 16261)
  |To: akim@lrde.epita.fr
  |Date: 29 Jun 2004 10:51:36 -0000
  |X-Sent: 4 hours, 53 minutes, 28 seconds ago
  |
  |  
  |  +----------------------------------------------------+
  |            GCC Bug reporting interface. 
  |  +----------------------------------------------------+
  |
  |  Your GCC Bug Reporting interface request was successfull.

s/ successfull / successful /.


-- 


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-06-29 15:48 ` akim at epita dot fr
@ 2004-07-02 23:58 ` reichelt at gcc dot gnu dot org
  2004-08-17 23:59 ` mmitchel at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-07-02 23:58 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-07-02 23:58 -------
The typo in bugzilla's mail interface has been fixed.


-- 


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-07-02 23:58 ` reichelt at gcc dot gnu dot org
@ 2004-08-17 23:59 ` mmitchel at gcc dot gnu dot org
  2004-08-29 18:11 ` mmitchel at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-08-17 23:59 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-08-17 23:59 -------
Devang's patch is too invasive to backport.

Is there any way that we can avoid the ICE without making such an extensive change?

-- 


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2004-08-17 23:59 ` mmitchel at gcc dot gnu dot org
@ 2004-08-29 18:11 ` mmitchel at gcc dot gnu dot org
  2004-08-29 18:16 ` mmitchel at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-08-29 18:11 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-08-29 18:11 -------
Postponed until GCC 3.4.3.

-- 


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2004-08-29 18:11 ` mmitchel at gcc dot gnu dot org
@ 2004-08-29 18:16 ` mmitchel at gcc dot gnu dot org
  2004-11-01  0:45 ` mmitchel at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-08-29 18:16 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-08-29 18:14 -------
Postponed until GCC 3.4.3.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.2                       |3.4.3


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2004-08-29 18:16 ` mmitchel at gcc dot gnu dot org
@ 2004-11-01  0:45 ` mmitchel at gcc dot gnu dot org
  2004-11-08 21:48 ` reichelt at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2004-11-01  0:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-11-01 00:45 -------
Postponed until GCC 3.4.4.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.3                       |3.4.4


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2004-11-01  0:45 ` mmitchel at gcc dot gnu dot org
@ 2004-11-08 21:48 ` reichelt at gcc dot gnu dot org
  2004-11-08 21:49 ` reichelt at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-11-08 21:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-11-08 21:47 -------
*** Bug 18280 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |boris at kolpackov dot net


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2004-11-08 21:48 ` reichelt at gcc dot gnu dot org
@ 2004-11-08 21:49 ` reichelt at gcc dot gnu dot org
  2004-12-02 14:31 ` ebotcazou at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-11-08 21:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-11-08 21:49 -------
Here's a testcase without templates:

====================
namespace N
{
    struct A {};
    typedef A B;
}

void foo()
{
    struct C
    {
        C(N::B) {}
    };

    N::B b;
    C c(b);
}
====================


-- 


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


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

* [Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2004-11-08 21:49 ` reichelt at gcc dot gnu dot org
@ 2004-12-02 14:31 ` ebotcazou at gcc dot gnu dot org
  2004-12-02 14:33 ` [Bug debug/16261] " ebotcazou at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2004-12-02 14:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2004-12-02 14:31 -------
Testing a fix.


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


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


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

* [Bug debug/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2004-12-02 14:31 ` ebotcazou at gcc dot gnu dot org
@ 2004-12-02 14:33 ` ebotcazou at gcc dot gnu dot org
  2004-12-05 23:07 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2004-12-02 14:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2004-12-02 14:32 -------
Recategorizing.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |debug


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


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

* [Bug debug/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2004-12-02 14:33 ` [Bug debug/16261] " ebotcazou at gcc dot gnu dot org
@ 2004-12-05 23:07 ` pinskia at gcc dot gnu dot org
  2005-01-05 10:02 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-12-05 23:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-12-05 23:07 -------
Patch here: <http://gcc.gnu.org/ml/gcc-patches/2004-12/msg00362.html>.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug debug/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2004-12-05 23:07 ` pinskia at gcc dot gnu dot org
@ 2005-01-05 10:02 ` cvs-commit at gcc dot gnu dot org
  2005-01-18  8:42 ` ebotcazou at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-01-05 10:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-01-05 10:01 -------
Subject: Bug 16261

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-rhl-branch
Changes by:	jakub@gcc.gnu.org	2005-01-05 10:01:27

Modified files:
	gcc            : ChangeLog dwarf2out.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/debug: typedef2.C 

Log message:
	2004-12-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
	
	PR debug/16261
	Backport from mainline:
	2004-01-27  Devang Patel  <dpatel@apple.com>
	
	* dwarf2out.c: (remove_child_TAG): New function.
	(gen_subprogram_die): Do not remove all children dies while reusing
	declaration die for definition.  Instead, selectively remove only formal
	parameters.
	
	2004-12-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
	
	* g++.dg/debug/typedef2.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-rhl-branch&r1=2.2326.2.399.2.68&r2=2.2326.2.399.2.69
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/dwarf2out.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-rhl-branch&r1=1.478.2.8.2.5&r2=1.478.2.8.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-rhl-branch&r1=1.3389.2.170.2.38&r2=1.3389.2.170.2.39
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/debug/typedef2.C.diff?cvsroot=gcc&only_with_tag=gcc-3_4-rhl-branch&r1=NONE&r2=1.1.18.1



-- 


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


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

* [Bug debug/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2005-01-05 10:02 ` cvs-commit at gcc dot gnu dot org
@ 2005-01-18  8:42 ` ebotcazou at gcc dot gnu dot org
  2005-01-18 21:40 ` cvs-commit at gcc dot gnu dot org
  2005-01-18 21:41 ` ebotcazou at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-01-18  8:42 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2


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


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

* [Bug debug/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2005-01-18  8:42 ` ebotcazou at gcc dot gnu dot org
@ 2005-01-18 21:40 ` cvs-commit at gcc dot gnu dot org
  2005-01-18 21:41 ` ebotcazou at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-01-18 21:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-01-18 21:39 -------
Subject: Bug 16261

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	ebotcazou@gcc.gnu.org	2005-01-18 21:39:39

Modified files:
	gcc            : ChangeLog dwarf2out.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/debug: typedef3.C 

Log message:
	PR debug/16261
	Backport from mainline:
	2004-01-27  Devang Patel  <dpatel@apple.com>
	
	* dwarf2out.c: (remove_child_TAG): New function.
	(gen_subprogram_die): Do not remove all children dies while reusing
	declaration die for definition.  Instead, selectively remove only
	formal parameters.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=2.2326.2.776&r2=2.2326.2.777
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/dwarf2out.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.478.2.14&r2=1.478.2.15
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.3389.2.345&r2=1.3389.2.346
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/debug/typedef3.C.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=NONE&r2=1.1.2.1



-- 


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


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

* [Bug debug/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628
  2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
                   ` (16 preceding siblings ...)
  2005-01-18 21:40 ` cvs-commit at gcc dot gnu dot org
@ 2005-01-18 21:41 ` ebotcazou at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-01-18 21:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2005-01-18 21:41 -------
Patch applied.


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


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


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

end of thread, other threads:[~2005-01-18 21:41 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-29 11:10 [Bug c++/16261] New: ICE: output_die, at dwarf2out.c:6628 gcc-bugzilla at gcc dot gnu dot org
2004-06-29 11:17 ` [Bug c++/16261] [3.4 regression] " reichelt at gcc dot gnu dot org
2004-06-29 14:19 ` reichelt at gcc dot gnu dot org
2004-06-29 14:27 ` pinskia at gcc dot gnu dot org
2004-06-29 15:48 ` akim at epita dot fr
2004-07-02 23:58 ` reichelt at gcc dot gnu dot org
2004-08-17 23:59 ` mmitchel at gcc dot gnu dot org
2004-08-29 18:11 ` mmitchel at gcc dot gnu dot org
2004-08-29 18:16 ` mmitchel at gcc dot gnu dot org
2004-11-01  0:45 ` mmitchel at gcc dot gnu dot org
2004-11-08 21:48 ` reichelt at gcc dot gnu dot org
2004-11-08 21:49 ` reichelt at gcc dot gnu dot org
2004-12-02 14:31 ` ebotcazou at gcc dot gnu dot org
2004-12-02 14:33 ` [Bug debug/16261] " ebotcazou at gcc dot gnu dot org
2004-12-05 23:07 ` pinskia at gcc dot gnu dot org
2005-01-05 10:02 ` cvs-commit at gcc dot gnu dot org
2005-01-18  8:42 ` ebotcazou at gcc dot gnu dot org
2005-01-18 21:40 ` cvs-commit at gcc dot gnu dot org
2005-01-18 21:41 ` ebotcazou at gcc dot gnu dot 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).