This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/18318] [4.0 Regression] ICE: error: Multiple inline callers
- 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: 6 Nov 2004 21:12:30 -0000
- Subject: [Bug tree-optimization/18318] [4.0 Regression] ICE: error: Multiple inline callers
- References: <20041106204324.18318.enh@jessies.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-06 21:12 -------
Confirmed (the hint helped me reduce the testcase). Reduced testcase:
template <class T>
struct A
{
~A();
unsigned Blksize() const;
void f()
{
new T[Blksize()];
}
};
void gf()
{
A<A<int> > a;
a.f();
}
: Search converges between 2004-06-29-trunk (#475) and 2004-06-30-trunk (#476).
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |pinskia at gcc dot gnu dot
| |org
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2004-11-06 21:12:29
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18318