public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug debug/29202]  New: ICE in output_pubnames, at dwarf2out.c:7380
@ 2006-09-24 12:54 pluto at agmk dot net
  2006-09-24 12:55 ` [Bug debug/29202] " pluto at agmk dot net
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: pluto at agmk dot net @ 2006-09-24 12:54 UTC (permalink / raw)
  To: gcc-bugs

$ g++ posix_api.ii -c -gdwarf-2 -g2 -feliminate-dwarf2-dups -finline-functions

internal compiler error: in output_pubnames, at dwarf2out.c:7380


-- 
           Summary: ICE in output_pubnames, at dwarf2out.c:7380
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pluto at agmk dot net
GCC target triplet: *-linux


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


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

* [Bug debug/29202] ICE in output_pubnames, at dwarf2out.c:7380
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
@ 2006-09-24 12:55 ` pluto at agmk dot net
  2006-09-24 17:34 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pluto at agmk dot net @ 2006-09-24 12:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pluto at agmk dot net  2006-09-24 12:54 -------
Created an attachment (id=12319)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12319&action=view)
testcase


-- 


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


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

* [Bug debug/29202] ICE in output_pubnames, at dwarf2out.c:7380
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
  2006-09-24 12:55 ` [Bug debug/29202] " pluto at agmk dot net
@ 2006-09-24 17:34 ` pinskia at gcc dot gnu dot org
  2006-09-25  3:19 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-09-24 17:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-09-24 17:34 -------
Reducing.


-- 


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


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

* [Bug debug/29202] ICE in output_pubnames, at dwarf2out.c:7380
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
  2006-09-24 12:55 ` [Bug debug/29202] " pluto at agmk dot net
  2006-09-24 17:34 ` pinskia at gcc dot gnu dot org
@ 2006-09-25  3:19 ` pinskia at gcc dot gnu dot org
  2006-09-25  3:22 ` [Bug debug/29202] [4.1/4.2 Regression] ICE with external template and const data in the template pinskia at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-09-25  3:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-09-25 03:19 -------
reduced testcase:
template <class charT> struct s
{
    charT imp() const;
};
template <class charT> charT s<charT>::imp() const
{
    static const int masks[20] = {0};
}
__extension__ extern template char  s<char>::imp() const;
int regcompA(void)
{
  s<char> t;
  t.imp();
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-09-25 03:19:34
               date|                            |


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


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

* [Bug debug/29202] [4.1/4.2 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (2 preceding siblings ...)
  2006-09-25  3:19 ` pinskia at gcc dot gnu dot org
@ 2006-09-25  3:22 ` pinskia at gcc dot gnu dot org
  2006-10-01 22:59 ` mmitchel at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-09-25  3:22 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
           Keywords|                            |ice-on-valid-code
      Known to work|                            |3.4.0
            Summary|ICE in output_pubnames, at  |[4.1/4.2 Regression] ICE
                   |dwarf2out.c:7380            |with external template and
                   |                            |const data in the template
   Target Milestone|---                         |4.1.2


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


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

* [Bug debug/29202] [4.1/4.2 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (3 preceding siblings ...)
  2006-09-25  3:22 ` [Bug debug/29202] [4.1/4.2 Regression] ICE with external template and const data in the template pinskia at gcc dot gnu dot org
@ 2006-10-01 22:59 ` mmitchel at gcc dot gnu dot org
  2007-02-14  9:18 ` [Bug debug/29202] [4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-10-01 22:59 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

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


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


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

* [Bug debug/29202] [4.1/4.2/4.3 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (4 preceding siblings ...)
  2006-10-01 22:59 ` mmitchel at gcc dot gnu dot org
@ 2007-02-14  9:18 ` mmitchel at gcc dot gnu dot org
  2007-04-25 17:55 ` janis at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-02-14  9:18 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.2                       |4.1.3


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


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

* [Bug debug/29202] [4.1/4.2/4.3 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (5 preceding siblings ...)
  2007-02-14  9:18 ` [Bug debug/29202] [4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
@ 2007-04-25 17:55 ` janis at gcc dot gnu dot org
  2008-07-04 21:32 ` [Bug debug/29202] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janis at gcc dot gnu dot org @ 2007-04-25 17:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from janis at gcc dot gnu dot org  2007-04-25 18:55 -------
A regression hunt on powerpc-linux using the reduced testcase from comment #3
with "-g2 -feliminate-dwarf2-dups -finline-functions" identified the following
patch:

    http://gcc.gnu.org/viewcvs?view=rev&rev=100802

    r100802 | hubicka | 2005-06-09 16:21:36 +0000 (Thu, 09 Jun 2005)

The failure also occurs with current trunk.


-- 

janis at gcc dot gnu dot org changed:

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


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


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

* [Bug debug/29202] [4.2/4.3/4.4 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (6 preceding siblings ...)
  2007-04-25 17:55 ` janis at gcc dot gnu dot org
@ 2008-07-04 21:32 ` jsm28 at gcc dot gnu dot org
  2008-12-04 15:09 ` jason at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-07-04 21:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jsm28 at gcc dot gnu dot org  2008-07-04 21:31 -------
Closing 4.1 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.1/4.2/4.3/4.4 Regression]|[4.2/4.3/4.4 Regression] ICE
                   |ICE with external template  |with external template and
                   |and const data in the       |const data in the template
                   |template                    |
   Target Milestone|4.1.3                       |4.2.5


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


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

* [Bug debug/29202] [4.2/4.3/4.4 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (7 preceding siblings ...)
  2008-07-04 21:32 ` [Bug debug/29202] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
@ 2008-12-04 15:09 ` jason at gcc dot gnu dot org
  2008-12-04 15:20 ` rguenth at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jason at gcc dot gnu dot org @ 2008-12-04 15:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jason at gcc dot gnu dot org  2008-12-04 14:58 -------
I can't reproduce this with current 4.4 sources.


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


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


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

* [Bug debug/29202] [4.2/4.3/4.4 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (8 preceding siblings ...)
  2008-12-04 15:09 ` jason at gcc dot gnu dot org
@ 2008-12-04 15:20 ` rguenth at gcc dot gnu dot org
  2008-12-29  6:57 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-04 15:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rguenth at gcc dot gnu dot org  2008-12-04 15:17 -------
The reduced testcase still fails on the 4.3 branch.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|4.1.2 4.2.0                 |4.1.2 4.2.0 4.3.2


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


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

* [Bug debug/29202] [4.2/4.3/4.4 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (9 preceding siblings ...)
  2008-12-04 15:20 ` rguenth at gcc dot gnu dot org
@ 2008-12-29  6:57 ` pinskia at gcc dot gnu dot org
  2008-12-29  7:01 ` [Bug debug/29202] [4.2/4.3 " pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-12-29  6:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pinskia at gcc dot gnu dot org  2008-12-29 06:56 -------
A patch was posted to http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00850.html

Maybe some other cgraph changes in 4.4 fixes the problem.


-- 


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


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

* [Bug debug/29202] [4.2/4.3 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (10 preceding siblings ...)
  2008-12-29  6:57 ` pinskia at gcc dot gnu dot org
@ 2008-12-29  7:01 ` pinskia at gcc dot gnu dot org
  2009-03-31 19:43 ` [Bug debug/29202] [4.3 " jsm28 at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-12-29  7:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from pinskia at gcc dot gnu dot org  2008-12-29 06:59 -------
This was most likely fixed for 4.4 by the removal of DECL_INLINE.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
      Known to work|3.4.0                       |3.4.0 4.4.0
   Last reconfirmed|2007-08-06 15:09:05         |2008-12-29 06:59:10
               date|                            |
            Summary|[4.2/4.3/4.4 Regression] ICE|[4.2/4.3 Regression] ICE
                   |with external template and  |with external template and
                   |const data in the template  |const data in the template


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


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

* [Bug debug/29202] [4.3 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (11 preceding siblings ...)
  2008-12-29  7:01 ` [Bug debug/29202] [4.2/4.3 " pinskia at gcc dot gnu dot org
@ 2009-03-31 19:43 ` jsm28 at gcc dot gnu dot org
  2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
  2010-05-22 18:17 ` rguenth at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2009-03-31 19:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jsm28 at gcc dot gnu dot org  2009-03-31 19:42 -------
Closing 4.2 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.2/4.3 Regression] ICE    |[4.3 Regression] ICE with
                   |with external template and  |external template and const
                   |const data in the template  |data in the template
   Target Milestone|4.2.5                       |4.3.4


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


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

* [Bug debug/29202] [4.3 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (12 preceding siblings ...)
  2009-03-31 19:43 ` [Bug debug/29202] [4.3 " jsm28 at gcc dot gnu dot org
@ 2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
  2010-05-22 18:17 ` rguenth at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-08-04 12:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from rguenth at gcc dot gnu dot org  2009-08-04 12:27 -------
GCC 4.3.4 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.4                       |4.3.5


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


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

* [Bug debug/29202] [4.3 Regression] ICE with external template and const data in the template
  2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
                   ` (13 preceding siblings ...)
  2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
@ 2010-05-22 18:17 ` rguenth at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-05-22 18:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from rguenth at gcc dot gnu dot org  2010-05-22 18:11 -------
GCC 4.3.5 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.5                       |4.3.6


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


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

end of thread, other threads:[~2010-05-22 18:17 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-09-24 12:54 [Bug debug/29202] New: ICE in output_pubnames, at dwarf2out.c:7380 pluto at agmk dot net
2006-09-24 12:55 ` [Bug debug/29202] " pluto at agmk dot net
2006-09-24 17:34 ` pinskia at gcc dot gnu dot org
2006-09-25  3:19 ` pinskia at gcc dot gnu dot org
2006-09-25  3:22 ` [Bug debug/29202] [4.1/4.2 Regression] ICE with external template and const data in the template pinskia at gcc dot gnu dot org
2006-10-01 22:59 ` mmitchel at gcc dot gnu dot org
2007-02-14  9:18 ` [Bug debug/29202] [4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
2007-04-25 17:55 ` janis at gcc dot gnu dot org
2008-07-04 21:32 ` [Bug debug/29202] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
2008-12-04 15:09 ` jason at gcc dot gnu dot org
2008-12-04 15:20 ` rguenth at gcc dot gnu dot org
2008-12-29  6:57 ` pinskia at gcc dot gnu dot org
2008-12-29  7:01 ` [Bug debug/29202] [4.2/4.3 " pinskia at gcc dot gnu dot org
2009-03-31 19:43 ` [Bug debug/29202] [4.3 " jsm28 at gcc dot gnu dot org
2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
2010-05-22 18:17 ` rguenth 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).