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]

[Bug target/61618] [4.10 Regression]: ICE in expand_vec_perm_pblendv, at config/i386/i386.c with -mavx


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

--- Comment #1 from UroÅ Bizjak <ubizjak at gmail dot com> ---
Testcase (compile with -O2 -mavx):

--cut here--
typedef float V __attribute__ ((vector_size (32)));
typedef unsigned int VI __attribute__ ((vector_size (32)));

extern V a, b, c, d;

void test_9 (void)
{
  VI mask = { 13, 11, 10, 15, 8, 5, 14, 8 };
  d = __builtin_shuffle (a, b, mask);
}
--cut here--

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