From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27753 invoked by alias); 6 Oct 2003 20:03:08 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 27719 invoked by uid 48); 6 Oct 2003 20:03:06 -0000 Date: Mon, 06 Oct 2003 20:03:00 -0000 Message-ID: <20031006200306.27718.qmail@sources.redhat.com> From: "reichelt at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20030911210031.12253.stefaandr@hotmail.com> References: <20030911210031.12253.stefaandr@hotmail.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/12253] [tree-ssa] ICE on conversion to std::string inside array initialization X-Bugzilla-Reason: CC X-SW-Source: 2003-10/txt/msg00422.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12253 reichelt at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1 Keywords| |ice-on-valid-code Last reconfirmed|0000-00-00 00:00:00 |2003-10-06 20:03:06 date| | ------- Additional Comments From reichelt at gcc dot gnu dot org 2003-10-06 20:03 ------- Confirmed with 3.5-tree-ssa 20031006. Here's a reduced testcase: ========================================== struct A { ~A(); }; template struct B { A a; B(const char*, const A& = A()); }; extern template class B; void foo() { B b[] = { "" }; } ========================================== for which I get PR12253.ii: In function `void foo()': PR12253.ii:14: internal compiler error: in gimplify_expr, at gimplify.c:662 Please submit a full bug report, [etc.]