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 libmudflap/22155] ICE with: "-fmudflap -D_GLIBCXX_DEBUG"


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-06-23 11:52 -------
Btw, here's an even shorter testcase:

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

struct B
{
    B(const A&, const A&);
    int foo();
};

void bar(int, int);

void baz(int& i)
{
    B b=B(A(),A());
    bar(i,b.foo());
}
============================


-- 


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


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