------- Comment #6 from reichelt at gcc dot gnu dot org 2006-02-10 13:21 ------- Reduced testcase:
====================== struct A { void f() {} ~A(); }; void foo(A* p) { for ( ; p; --p) (p->*&A::f)(); } void bar() { A a; foo(&a); foo(&a); } ====================== -- reichelt at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |minor Target Milestone|4.1.0 |--- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26209