Skip to content

Commit 8c2b4aa

Browse files
[mlir][LLVM][NFC] Fix description of LLVMFixedVectorType (#126031)
1 parent d1de75a commit 8c2b4aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td

+3-3
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,9 @@ def LLVMPointerType : LLVMType<"LLVMPointer", "ptr", [
291291
def LLVMFixedVectorType : LLVMType<"LLVMFixedVector", "vec"> {
292292
let summary = "LLVM fixed vector type";
293293
let description = [{
294-
LLVM dialect scalable vector type, represents a sequence of elements of
295-
unknown length that is known to be divisible by some constant. These
296-
elements can be processed as one in SIMD context.
294+
LLVM dialect vector type that supports all element types that are supported
295+
in LLVM vectors but that are not supported by the builtin MLIR vector type.
296+
E.g., LLVMFixedVectorType supports LLVM pointers as element type.
297297
}];
298298

299299
let typeName = "llvm.fixed_vec";

0 commit comments

Comments
 (0)