This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/18425] ICE in vector.tcc when -ftree-vectorize enabled
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 Nov 2004 07:03:52 -0000
- Subject: [Bug tree-optimization/18425] ICE in vector.tcc when -ftree-vectorize enabled
- References: <20041111054138.18425.senor_fjord@yahoo.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-11 07:03 -------
Confirmed, reduced all the way down to:
char ** _M_allocate();
void
_M_fill_insert(unsigned int __n)
{
char **__new_start = _M_allocate();
char *__tmp = 0;
for (; __n > 0; --__n, ++__new_start)
*__new_start = __tmp;
}
--
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|unassigned at gcc dot gnu |pinskia at gcc dot gnu dot
|dot org |org
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2004-11-11 07:03:51
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18425