This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug optimization/13524] [tree-ssa] ICE in optimize_inline_calls when passing inline function result to builtin
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 30 Dec 2003 20:20:19 -0000
- Subject: [Bug optimization/13524] [tree-ssa] ICE in optimize_inline_calls when passing inline function result to builtin
- References: <20031230200055.13524.falk@debian.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2003-12-30 20:20 -------
Confirmed also on PPC with the altivec built-ins:
#include <altivec.h>
static inline int avg4 (void)
{
return 0;
}
vector signed f(int *x)
{
return vec_ld(avg4(),x);
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Component|target |optimization
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2003-12-30 20:20:18
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13524