This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/13059] [tree-ssa] ICE in gimplify_expr
- From: "bangerth at dealii dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 16 Nov 2003 18:21:46 -0000
- Subject: [Bug c++/13059] [tree-ssa] ICE in gimplify_expr
- References: <20031114223728.13059.bangerth@dealii.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From bangerth at dealii dot org 2003-11-16 18:21 -------
And here it is self-contained:
----------------------------
struct S {
~S() throw() { }
};
struct C {
C(const S& = S()) { }
};
void foo (){
C test[2] = { C(), C() };
}
------------------------
deal.II/deal.II> c++ -c x.ii
x.ii: In function `void foo()':
x.ii:10: internal compiler error: in gimplify_expr, at gimplify.c:3143
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
W.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13059