[Bug c++/61421] Invalid -O2 optimization breaks program

pinskia at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Jun 5 21:45:00 GMT 2014


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61421

--- Comment #15 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
template<class T> class list2
{
  public:
    struct node {
        node    *next;
        node    *prev;
    };

    node    anchor;

  public:
    /* API */
}

struct Obj : list2<Obj>::node {
    /* obj-specific elements */
}

list2<Obj>    main_list;



More information about the Gcc-bugs mailing list