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 c/13634] ICE when compiling OpenCV.


------- Additional Comments From rosbacke at nada dot kth dot se  2004-01-09 18:43 -------
I have a shorter testcase: 
------------------------------------------------------------------------------ 
double pow(double); 
 
int icvCubicV(double a2) 
{ 
  double p; 
  int i=0; 
   
  p = a2 / 3; 
  while(i<6) ++i; 
 
  return pow( 1./ 3. ) +  
    ( a2<0.0 ? -1.0: 1.0  )  *  p  / 3; 
} 
---------------------------------------------------------------- 
Compile with the same arguments as given above. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|ICE when compiling OpenCV.  |ICE when compiling OpenCV.


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


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