[Bug c++/18865] [4.0 Regression] ICE in cp_expr_size, at cp/cp-objcp-common.c:86

2004-12-07 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-12-07 15:13 --- This is a dup of bug 18793, just reduced differently. *** This bug has been marked as a duplicate of 18793 *** -- What|Removed |Added ---

[Bug c++/18865] [4.0 Regression] ICE in cp_expr_size, at cp/cp-objcp-common.c:86

2004-12-07 Thread lerdsuwa at gcc dot gnu dot org
--- Additional Comments From lerdsuwa at gcc dot gnu dot org 2004-12-07 12:24 --- Bug related to PR18793. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18865

[Bug c++/18865] [4.0 Regression] ICE in cp_expr_size, at cp/cp-objcp-common.c:86

2004-12-07 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-12-07 10:20 --- // reduced testcase struct T { T (); T (const T&); T &operator= (const T&); }; struct S { void *p; T t; void *q; }; void foo () { S s = {0, T (), 0}; } -- What|Removed