[PATCH] D132342: [X86][AVX512FP16] Relax limitation to AVX512FP16 intrinsics. NFCI
Simon Pilgrim via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 22 07:13:50 PDT 2022
RKSimon added inline comments.
================
Comment at: clang/lib/Headers/avx512fp16intrin.h:13
+#ifdef __SSE2__
+
----------------
Doesn't this have to be the general case like in other places in the headers?
```
#if !(defined(_MSC_VER) || defined(__SCE__)) || __has_feature(modules) || \
defined(__SSE2__)
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132342/new/
https://reviews.llvm.org/D132342
More information about the cfe-commits
mailing list