[PATCH] D41557: [x86][icelake][vbmi2]
coby via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 26 06:46:16 PST 2017
coby marked 2 inline comments as done.
coby added inline comments.
================
Comment at: lib/Basic/Targets/X86.cpp:589
+ // Enable BWI instruction if VBMI/VBMI2 is being enabled.
+ if (Name.startswith("avx512vbmi") && Enabled)
Features["avx512bw"] = true;
----------------
craig.topper wrote:
> Do two equality checks ORed together. I think bad target attributes on functions only issue a warning and are discarded in codegen. So strings like avx512vbmifoo can get here and we should ignore them.
conditions on 582 .. 585 see that only "avx512vbmi" and "avx512vbmi2" will be candidates to the added check at 589, so we should be fine
Repository:
rC Clang
https://reviews.llvm.org/D41557
More information about the cfe-commits
mailing list