diff options
author | Maciej Gabka <maciej.gabka@arm.com> | 2024-08-28 12:48:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 12:48:20 +0100 |
commit | 95d2d1cba0e1428718bbdce0504292f62b212920 (patch) | |
tree | 481f49f67e9e44d61ae9c0fbed8ea4668595f384 /llvm/lib/IR/Verifier.cpp | |
parent | 77d63cfd18aa6643544cf7acd5ee287689d54cca (diff) | |
download | llvm-95d2d1cba0e1428718bbdce0504292f62b212920.zip llvm-95d2d1cba0e1428718bbdce0504292f62b212920.tar.gz llvm-95d2d1cba0e1428718bbdce0504292f62b212920.tar.bz2 |
Move stepvector intrinsic out of experimental namespace (#98043)
This patch is moving out stepvector intrinsic from the experimental
namespace.
This intrinsic exists in LLVM for several years now, and is widely used.
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r-- | llvm/lib/IR/Verifier.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp index 5ff1f3d..2c0f10a 100644 --- a/llvm/lib/IR/Verifier.cpp +++ b/llvm/lib/IR/Verifier.cpp @@ -6097,11 +6097,11 @@ void Verifier::visitIntrinsicCall(Intrinsic::ID ID, CallBase &Call) { &Call); break; } - case Intrinsic::experimental_stepvector: { + case Intrinsic::stepvector: { VectorType *VecTy = dyn_cast<VectorType>(Call.getType()); Check(VecTy && VecTy->getScalarType()->isIntegerTy() && VecTy->getScalarSizeInBits() >= 8, - "experimental_stepvector only supported for vectors of integers " + "stepvector only supported for vectors of integers " "with a bitwidth of at least 8.", &Call); break; |