This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/34233] ICE: get_callee_fndecl, at tree.c:6592
- From: "rguenth at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 26 Nov 2007 11:09:22 -0000
- Subject: [Bug middle-end/34233] ICE: get_callee_fndecl, at tree.c:6592
- References: <bug-34233-3137@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from rguenth at gcc dot gnu dot org 2007-11-26 11:09 -------
Reduced testcase:
-funsafe-math-optimizations
double foo(void)
{
return __builtin_pow (0.0, -1.5);
}
which we (try to) expand as 1.0 / (sqrt (0.0) * 0.0) where sqrt (0.0) is
simplified to 0.0.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34233