[Bug target/72758] GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends
pinskia at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Sat Jul 30 05:17:00 GMT 2016
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72758
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Note the testcase is wrong (but only slightly).
Also as a workaround you can use a GNU C extension.
Something like:
int main(int argc, char* argv[])
{
poly128_t a = {0};
uint64x2_t b = (uint64x2_t)(a);
return 0;
More information about the Gcc-bugs
mailing list