[Mlir-commits] [mlir] 8c2b4aa - [mlir][LLVM][NFC] Fix description of `LLVMFixedVectorType` (#126031)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu Feb 6 01:37:36 PST 2025


Author: Matthias Springer
Date: 2025-02-06T10:37:32+01:00
New Revision: 8c2b4aa5a0f495592f906b1b9d1a859d3c1062da

URL: https://github.com/llvm/llvm-project/commit/8c2b4aa5a0f495592f906b1b9d1a859d3c1062da
DIFF: https://github.com/llvm/llvm-project/commit/8c2b4aa5a0f495592f906b1b9d1a859d3c1062da.diff

LOG: [mlir][LLVM][NFC] Fix description of `LLVMFixedVectorType` (#126031)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td b/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td
index 77c8035ce3d71a3..0b9e4b9c5573839 100644
--- a/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td
+++ b/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td
@@ -291,9 +291,9 @@ def LLVMPointerType : LLVMType<"LLVMPointer", "ptr", [
 def LLVMFixedVectorType : LLVMType<"LLVMFixedVector", "vec"> {
   let summary = "LLVM fixed vector type";
   let description = [{
-    LLVM dialect scalable vector type, represents a sequence of elements of
-    unknown length that is known to be divisible by some constant. These
-    elements can be processed as one in SIMD context.
+    LLVM dialect vector type that supports all element types that are supported
+    in LLVM vectors but that are not supported by the builtin MLIR vector type.
+    E.g., LLVMFixedVectorType supports LLVM pointers as element type.
   }];
 
   let typeName = "llvm.fixed_vec";


        


More information about the Mlir-commits mailing list