------- Additional Comments From mueller at kde dot org 2004-10-12 15:42 -------
reduced testcase:
struct C
{
int *c;
C () : c (0) { }
C (const C &x) : c (x.c) { }
C &operator++ () { return *this; }
};
void breakme (void)
{
C j;
bool k = false;
for (;; k ? j : ++j)
;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17661