[Bug target/25005] [4.1/4.2 regression] ICE in extract_constrain_insn_cached, at recog.c:2002

pinskia at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Wed Nov 23 18:48:00 GMT 2005



------- Comment #4 from pinskia at gcc dot gnu dot org  2005-11-23 18:48 -------
Reduced (maybe too much as there is an uninitialized variable now):
typedef long unsigned int size_t;
namespace std {
  template<typename _Tp >     struct vector {
      vector(){
        size_t __n;
        static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
      }
  };
};
struct Point {
  Point ();
  double values[3];
};
void hyper_L (){
 const Point vertices[3]     = {};
 std::vector<Point > a;
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-11-23 18:48:32
               date|                            |


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



More information about the Gcc-bugs mailing list