------- Comment #4 from pinskia at gcc dot gnu dot org 2006-08-25 06:11 ------- Note the reduced testcase is: struct QDateTime { QDateTime addSecs( int secs ) const; int t; }; QDateTime gridToDate(long x) { QDateTime date; date = date.addSecs(1); return date; } void whatsOnAt(long x, long y) { gridToDate(x); }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28840