public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3
@ 2004-01-02  9:53 falk at debian dot org
  2004-01-02 10:00 ` [Bug c++/13543] " falk at debian dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: falk at debian dot org @ 2004-01-02  9:53 UTC (permalink / raw)
  To: gcc-bugs

gcc version 3.5-tree-ssa 20031230 (merged 20031130)

% cat bug.i
struct basic_string { basic_string(const basic_string&); };
basic_string operator+(const basic_string& lhs, char);
struct TrieNode { const TrieNode* nextSibling() const; };
void dumpNode(const TrieNode* node, basic_string start)
{
  dumpNode(node, start + 'a');
}

% g++ -c -O3 bug.i
bug.i: In function `void dumpNode(const TrieNode*, basic_string)':
bug.i:6: internal compiler error: in make_decl_rtl, at varasm.c:760
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

-- 
           Summary: [tree-ssa] ICE in make_decl_rtl at -O3
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: falk at debian dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: alphaev68-unknown-linux-gnu
  GCC host triplet: alphaev68-unknown-linux-gnu
GCC target triplet: alphaev68-unknown-linux-gnu


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
@ 2004-01-02 10:00 ` falk at debian dot org
  2004-01-02 13:43 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: falk at debian dot org @ 2004-01-02 10:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From falk at debian dot org  2004-01-02 10:00 -------
Hey, we don't even need TrieNode:

struct basic_string { basic_string(const basic_string&); };
basic_string operator+(const basic_string& lhs, char);
void dumpNode(basic_string start) { dumpNode(start + 'a'); }


-- 


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
  2004-01-02 10:00 ` [Bug c++/13543] " falk at debian dot org
@ 2004-01-02 13:43 ` pinskia at gcc dot gnu dot org
  2004-01-02 13:50 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-02 13:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-02 13:43 -------
Confirmed, has to do with the inliner.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-01-02 13:43:15
               date|                            |


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
  2004-01-02 10:00 ` [Bug c++/13543] " falk at debian dot org
  2004-01-02 13:43 ` pinskia at gcc dot gnu dot org
@ 2004-01-02 13:50 ` pinskia at gcc dot gnu dot org
  2004-01-02 16:46 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-02 13:50 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |tree-ssa


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
                   ` (2 preceding siblings ...)
  2004-01-02 13:50 ` pinskia at gcc dot gnu dot org
@ 2004-01-02 16:46 ` pinskia at gcc dot gnu dot org
  2004-01-06 23:05 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-02 16:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-02 16:46 -------
I should say it also happens with 20031224 (but then again not much have changed 
since then).  I would use Phil's regression hunter but it is down, right now.

-- 


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
                   ` (3 preceding siblings ...)
  2004-01-02 16:46 ` pinskia at gcc dot gnu dot org
@ 2004-01-06 23:05 ` pinskia at gcc dot gnu dot org
  2004-01-20 16:32 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-06 23:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-06 23:05 -------
I think this bug also effects SPEC 2000 (eon).

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


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
                   ` (4 preceding siblings ...)
  2004-01-06 23:05 ` pinskia at gcc dot gnu dot org
@ 2004-01-20 16:32 ` pinskia at gcc dot gnu dot org
  2004-01-29 21:25 ` rth at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-20 16:32 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
   Last reconfirmed|2004-01-02 13:43:15         |2004-01-20 16:32:11
               date|                            |


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
                   ` (5 preceding siblings ...)
  2004-01-20 16:32 ` pinskia at gcc dot gnu dot org
@ 2004-01-29 21:25 ` rth at gcc dot gnu dot org
  2004-01-30  0:31 ` cvs-commit at gcc dot gnu dot org
  2004-01-30  0:33 ` rth at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: rth at gcc dot gnu dot org @ 2004-01-29 21:25 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rth at gcc dot gnu dot org  2004-01-29 21:25 -------
Patch in testing.

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


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
                   ` (6 preceding siblings ...)
  2004-01-29 21:25 ` rth at gcc dot gnu dot org
@ 2004-01-30  0:31 ` cvs-commit at gcc dot gnu dot org
  2004-01-30  0:33 ` rth at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-01-30  0:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-01-30 00:31 -------
Subject: Bug 13543

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	tree-ssa-20020619-branch
Changes by:	rth@gcc.gnu.org	2004-01-30 00:31:09

Modified files:
	gcc            : ChangeLog.tree-ssa tree-inline.c 

Log message:
	PR c++/13543
	* tree-inline.c (initialize_inlined_parameters): Register the
	substitute reference also.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.tree-ssa.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.2.1137&r2=1.1.2.1138
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-inline.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.26.2.78&r2=1.26.2.79



-- 


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


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

* [Bug c++/13543] [tree-ssa] ICE in make_decl_rtl at -O3
  2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
                   ` (7 preceding siblings ...)
  2004-01-30  0:31 ` cvs-commit at gcc dot gnu dot org
@ 2004-01-30  0:33 ` rth at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: rth at gcc dot gnu dot org @ 2004-01-30  0:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rth at gcc dot gnu dot org  2004-01-30 00:33 -------
http://gcc.gnu.org/ml/gcc-patches/2004-01/msg03332.html

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


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


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

end of thread, other threads:[~2004-01-30  0:33 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-02  9:53 [Bug c++/13543] New: [tree-ssa] ICE in make_decl_rtl at -O3 falk at debian dot org
2004-01-02 10:00 ` [Bug c++/13543] " falk at debian dot org
2004-01-02 13:43 ` pinskia at gcc dot gnu dot org
2004-01-02 13:50 ` pinskia at gcc dot gnu dot org
2004-01-02 16:46 ` pinskia at gcc dot gnu dot org
2004-01-06 23:05 ` pinskia at gcc dot gnu dot org
2004-01-20 16:32 ` pinskia at gcc dot gnu dot org
2004-01-29 21:25 ` rth at gcc dot gnu dot org
2004-01-30  0:31 ` cvs-commit at gcc dot gnu dot org
2004-01-30  0:33 ` rth 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).