--- Additional Comments From janis at gcc dot gnu dot org 2005-05-18 22:19
---
This is the same problem that causes cc1plus to segfault building SPEC CPU2000
test eon for powerpc-linux at any level of optimization including -O0. The
segfault happens when maybe_fold_offset_to_component_r
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-18
14:00 ---
Confirmed, reduced testcase:
struct color {
~color();
};
struct style {
color col;
style (color);
};
style::style(color c)
: col(c)
{
}
--
What|Removed |Added
--