[Mlir-commits] [mlir] 7ebb10d - [MLIR][Standard] Update `assert` documentation post commit

Frederik Gossen llvmlistbot at llvm.org
Wed Jul 15 09:51:06 PDT 2020


Author: Frederik Gossen
Date: 2020-07-15T16:13:53Z
New Revision: 7ebb10d46a8d43af0fdafe0d9766e8bdca4d3ec5

URL: https://github.com/llvm/llvm-project/commit/7ebb10d46a8d43af0fdafe0d9766e8bdca4d3ec5
DIFF: https://github.com/llvm/llvm-project/commit/7ebb10d46a8d43af0fdafe0d9766e8bdca4d3ec5.diff

LOG: [MLIR][Standard] Update `assert` documentation post commit

Update line wrapping.

Differential Revision: https://reviews.llvm.org/D83769

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/StandardOps/IR/Ops.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td b/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td
index 452546f5da83..c3e3ada8cd40 100644
--- a/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td
+++ b/mlir/include/mlir/Dialect/StandardOps/IR/Ops.td
@@ -449,10 +449,9 @@ def AssertOp : Std_Op<"assert"> {
   let summary = "Assert operation with message attribute";
   let description = [{
     Assert operation with single boolean operand and an error message attribute.
-    If the argument is `true` this operation has no effect.
-    Otherwise, the program execution will abort.
-    The provided error message may be used by a runtime to propagate the error
-    to the user.
+    If the argument is `true` this operation has no effect. Otherwise, the
+    program execution will abort. The provided error message may be used by a
+    runtime to propagate the error to the user.
 
     Example:
 


        


More information about the Mlir-commits mailing list