[Bug target/50911] [4.7 regression] assertion failure in expand_vec_perm_interleave2 with -msse

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Nov 9 13:57:00 GMT 2011


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011-11-09
                 CC|                            |jakub at gcc dot gnu.org
     Ever Confirmed|0                           |1

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-11-09 13:52:58 UTC ---
Shorter testcase (in a language I understand ;) ):
struct A { void *a, *b; };

void
foo (struct A *p)
{
  int i;
  for (i = 0; i < 1024; i++)
    {
      p[i].a = 0;
      p[i].b = "abc";
    }
}



More information about the Gcc-bugs mailing list