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/15643] [3.5 Regression] ICE in replace_ssa_names, at tree-ssa-copy.c:73


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-08 18:24 -------
Here is another testcase this time in C++:
void foo();

struct A
{
    int i;

    A() : i(0) {}
    ~A() { if (i) foo(); }
    void bar(A &a) { a.i = 1; }
};

void quus()
{
    A a1, a2;
    foo();
    a1.bar(a1);
}

-- 


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


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