https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87976
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |FIXED
Status|REOPENED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87976
Alexander Monakov changed:
What|Removed |Added
Status|RESOLVED|REOPENED
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87976
--- Comment #4 from Marc Glisse ---
(In reply to Andrew Pinski from comment #1)
> apinski@xeond:~/src/toolchain-o7$ gcc t6.c -mavx -O2 -S -o - -march=native
> .file "t6.c"
> .text
> .p2align 4,,15
> .globl g
>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87976
--- Comment #3 from Thiago Macieira ---
Workaround:
__m128i value64 = _mm_set_epi64x(0, value); // _mm_cvtsi64_si128(value);
asm ("" : "+x" (value64));
__m256i value256 = _mm256_broadcastq_epi64(value64);
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87976
Andrew Pinski changed:
What|Removed |Added
Resolution|INVALID |DUPLICATE
--- Comment #2 from Andrew Pin
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87976
Andrew Pinski changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---