[PATCH] D81201: [SVE] Eliminate calls to default-false VectorType::get() from llvm-stress
Christopher Tetreault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 4 16:37:00 PDT 2020
ctetreau created this revision.
Herald added subscribers: llvm-commits, psnobl, rkruppe, tschuett.
Herald added a reviewer: efriedma.
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D81201
Files:
llvm/tools/llvm-stress/llvm-stress.cpp
Index: llvm/tools/llvm-stress/llvm-stress.cpp
===================================================================
--- llvm/tools/llvm-stress/llvm-stress.cpp
+++ llvm/tools/llvm-stress/llvm-stress.cpp
@@ -300,7 +300,7 @@
if (len != (unsigned)-1)
width = len;
- return VectorType::get(Ty, width);
+ return FixedVectorType::get(Ty, width);
}
/// Pick a random scalar type.
@@ -628,9 +628,10 @@
// If the value type is a vector, and we allow vector select, then in 50%
// of the cases generate a vector select.
- if (Val0->getType()->isVectorTy() && (getRandom() % 1)) {
- unsigned NumElem = cast<VectorType>(Val0->getType())->getNumElements();
- CondTy = VectorType::get(CondTy, NumElem);
+ if (isa<FixedVectorType>(Val0->getType()) && (getRandom() % 1)) {
+ unsigned NumElem =
+ cast<FixedVectorType>(Val0->getType())->getNumElements();
+ CondTy = FixedVectorType::get(CondTy, NumElem);
}
Value *Cond = getRandomValue(CondTy);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D81201.268619.patch
Type: text/x-patch
Size: 1012 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200604/5cc63f20/attachment.bin>
More information about the llvm-commits
mailing list