[PATCH] D20101: [Clang][AVX512] completing missing intrinsics [pandnd].

Asaf Badouh via llvm-commits llvm-commits at lists.llvm.org
Wed May 18 00:39:07 PDT 2016


AsafBadouh added inline comments.

================
Comment at: lib/Headers/avx512fintrin.h:402
@@ +401,3 @@
+                   _mm512_undefined_si512 (),
+                   (__mmask16) -1);
+}
----------------
I think it will be better to use:

```
return (__m512i)(~(__v8di)__A & (__v8di)__B);
```



http://reviews.llvm.org/D20101





More information about the llvm-commits mailing list