Skip to content

Commit 39c5bc4

Browse files
committed
widened type -> vectorized type
1 parent cbf5ff9 commit 39c5bc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/IR/VectorTypeUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ inline ArrayRef<Type *> getContainedTypes(Type *const &Ty) {
8181

8282
/// Returns the number of vector elements for a vectorized type.
8383
inline ElementCount getVectorizedTypeVF(Type *Ty) {
84-
assert(isVectorizedTy(Ty) && "expected widened type");
84+
assert(isVectorizedTy(Ty) && "expected vectorized type");
8585
return cast<VectorType>(getContainedTypes(Ty).front())->getElementCount();
8686
}
8787

0 commit comments

Comments
 (0)