[flang-commits] [flang] [libcxx] [lld] [clang] [llvm] [compiler-rt] [libc] Fix ISel crash when lowering BUILD_VECTOR (PR #73186)
David Li via flang-commits
flang-commits at lists.llvm.org
Thu Nov 23 21:30:14 PST 2023
================
@@ -7254,6 +7255,10 @@ static SDValue lowerBuildVectorAsBroadcast(BuildVectorSDNode *BVOp,
EVT CVT = Ld.getValueType();
assert(!CVT.isVector() && "Must not broadcast a vector type");
+ // 512 bit vpbroadcastw is only available with AVX512BW
+ if (ScalarSize == 16 && IsGT256 && !Subtarget.hasBWI())
+ return SDValue();
----------------
david-xl wrote:
Done with some refactoring. PTAL.
https://github.com/llvm/llvm-project/pull/73186
More information about the flang-commits
mailing list