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]

Re: target/10205: Incorrect code generated for H8300 "normal" mode


Synopsis: Incorrect code generated for H8300 "normal" mode

State-Changed-From-To: open->analyzed
State-Changed-By: kazu
State-Changed-When: Thu Mar 27 19:59:48 2003
State-Changed-Why:
    Still present in mainline.  Here is a smaller testcase.
    
    class B {
    public:
      virtual void x () throw () = 0;
    };
    
    class MX : public B {
      short _save;
    public:
      void x () throw ();
    };
    
    extern void z (B &a);
    
    void
    foo ()
    {
      MX mx;
      z (mx);
      z (mx);
    }

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=10205


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