------- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-10 17:20 ------- Confirmed, reduced testcase: class vtkLargeInteger { vtkLargeInteger& operator<<=(int n); vtkLargeInteger& operator>>=(int n); }; vtkLargeInteger& vtkLargeInteger::operator<<=(int n) { int i;
if (n < 0) { *this >>= -n; return *this; } return *this; } -- What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1 Last reconfirmed|0000-00-00 00:00:00 |2005-05-10 17:20:41 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21493