This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug target/22553] [4.1 regression] ICE building libstdc++


------- Additional Comments From belyshev at depni dot sinp dot msu dot ru  2005-07-28 17:55 -------
// Confirmed, reduced testcase (compile with -O2 -fPIC):

int k, foo ();
void baz (int, int);

template < typename > class T
{
  void bla () throw ()
  {
    int j = foo ();
    baz (k ,  j);
  }
  
  void bam () 
  {
    while (k && foo ())
      bla ();
  }
};

template class T < int >;


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |belyshev at depni dot sinp
                   |                            |dot msu dot ru
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-07-28 17:55:17
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22553


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]