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 debug/16035] [3.4/3.5 Regression] [non-unit-at-a-time] internal compiler error: in gen_subprogram_die, at dwarf2out.c:10798


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-06-18 23:54 -------
And here's something without inheritance:

=======================================================================
namespace N
{
    void foo();

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

    inline A bar()
    {
        A quus (const A&);
        A a;
        return quus(A());
    }

    A a=bar();
}
=======================================================================


-- 


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


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