diff --git a/llvm/lib/Target/DirectX/DXILOpLowering.cpp b/llvm/lib/Target/DirectX/DXILOpLowering.cpp index f09e322f88e1fd..1329308ffec262 100644 --- a/llvm/lib/Target/DirectX/DXILOpLowering.cpp +++ b/llvm/lib/Target/DirectX/DXILOpLowering.cpp @@ -41,7 +41,7 @@ static bool isVectorArgExpansion(Function &F) { } static SmallVector populateOperands(Value *Arg, IRBuilder<> &Builder) { - SmallVector ExtractedElements; + SmallVector ExtractedElements; auto *VecArg = dyn_cast(Arg->getType()); for (unsigned I = 0; I < VecArg->getNumElements(); ++I) { Value *Index = ConstantInt::get(Type::getInt32Ty(Arg->getContext()), I);