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 tree-optimization/26919] [4.1/4.2 regression] ICE in cgraph_estimate_size_after_inlining caused by boost::lambda



------- Comment #9 from reichelt at gcc dot gnu dot org  2006-03-30 11:13 -------
Even shorter testcase:

If I remove an argument of the constructor, the code compiles fine.

====================================================================
struct A
{
  A() {}
};

struct B
{
  A a;
  B(A, int, int, int, int, int, int, int, int, int,
    int, int, int, int, int, int, int, int, int, int) {}
};

void foo()
{
  B b(A(), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
====================================================================


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |monitored


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


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