[PATCH] D84922: [X86][AVX512] Fix build fail after D81548
Pengfei Wang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 2 17:47:22 PDT 2020
pengfei added inline comments.
================
Comment at: llvm/lib/Target/X86/X86ISelLowering.cpp:38361
SDValue Src0 = V.getOperand(0);
+ if ((VT == MVT::v8i1 && !Subtarget.hasDQI()) ||
+ ((VT == MVT::v32i1 || VT == MVT::v64i1) && !Subtarget.hasBWI()))
----------------
Ping. @RKSimon, I think the check here won't break the further optimization. Can we let this patch in? Or you have a better solution?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D84922/new/
https://reviews.llvm.org/D84922
More information about the llvm-commits
mailing list