diff --git a/llvm/include/llvm/IR/IRBuilder.h b/llvm/include/llvm/IR/IRBuilder.h index a4b6e43c56f58..5ac7890905720 100644 --- a/llvm/include/llvm/IR/IRBuilder.h +++ b/llvm/include/llvm/IR/IRBuilder.h @@ -2324,15 +2324,6 @@ class IRBuilderBase { return CreateShuffleVector(V1, V2, IntMask, Name); } - LLVM_ATTRIBUTE_DEPRECATED(Value *CreateShuffleVector(Value *V1, Value *V2, - ArrayRef Mask, - const Twine &Name = ""), - "Pass indices as 'int' instead") { - SmallVector IntMask; - IntMask.assign(Mask.begin(), Mask.end()); - return CreateShuffleVector(V1, V2, IntMask, Name); - } - /// See class ShuffleVectorInst for a description of the mask representation. Value *CreateShuffleVector(Value *V1, Value *V2, ArrayRef Mask, const Twine &Name = "") {