ΒΆllvm::Value* concatenateVectors(
llvm::IRBuilderBase& Builder,
ArrayRef<llvm::Value*> Vecs)
llvm::Value* concatenateVectors(
llvm::IRBuilderBase& Builder,
ArrayRef<llvm::Value*> Vecs)
Description
Concatenate a list of vectors. This function generates code that concatenate the vectors in \p Vecs into a single large vector. The number of vectors should be greater than one, and their element types should be the same. The number of elements in the vectors should also be the same; however, if the last vector has fewer elements, it will be padded with undefs.
Declared at: llvm/include/llvm/Analysis/VectorUtils.h:567
Parameters
- llvm::IRBuilderBase& Builder
- ArrayRef<llvm::Value*> Vecs