aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/Constants.cpp
diff options
context:
space:
mode:
authorEli Friedman <efriedma@quicinc.com>2019-12-06 12:33:46 -0800
committerEli Friedman <efriedma@quicinc.com>2019-12-09 15:31:50 -0800
commit7c69a03c56601a55f47f29ea59e33c37e62db556 (patch)
tree946b82b7006ec374ce5f2d504361ba63626287e7 /llvm/lib/IR/Constants.cpp
parent584ed8822631481ced8d3574cc1fed1585aed77d (diff)
downloadllvm-7c69a03c56601a55f47f29ea59e33c37e62db556.zip
llvm-7c69a03c56601a55f47f29ea59e33c37e62db556.tar.gz
llvm-7c69a03c56601a55f47f29ea59e33c37e62db556.tar.bz2
[ConstantFold][SVE] Fix constant folding for shufflevector.
Don't try to fold away shuffles which can't be folded. Fix creation of shufflevector constant expressions. Differential Revision: https://reviews.llvm.org/D71147
Diffstat (limited to 'llvm/lib/IR/Constants.cpp')
-rw-r--r--llvm/lib/IR/Constants.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Constants.cpp b/llvm/lib/IR/Constants.cpp
index 7ea5cb8..fc215d6 100644
--- a/llvm/lib/IR/Constants.cpp
+++ b/llvm/lib/IR/Constants.cpp
@@ -2211,7 +2211,7 @@ Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
return FC; // Fold a few common cases.
- unsigned NElts = Mask->getType()->getVectorNumElements();
+ ElementCount NElts = Mask->getType()->getVectorElementCount();
Type *EltTy = V1->getType()->getVectorElementType();
Type *ShufTy = VectorType::get(EltTy, NElts);