This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/13634] ICE when compiling OpenCV.
- From: "rosbacke at nada dot kth dot se" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Jan 2004 18:43:40 -0000
- Subject: [Bug c/13634] ICE when compiling OpenCV.
- References: <20040109180730.13634.rosbacke@nada.kth.se>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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