[Bug target/61618] [4.10 Regression]: ICE in expand_vec_perm_pblendv, at config/i386/i386.c with -mavx
ubizjak at gmail dot com
gcc-bugzilla@gcc.gnu.org
Thu Jun 26 12:46:00 GMT 2014
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--
More information about the Gcc-bugs
mailing list