[mlir] NFC: properly align IR in comments
authorLei Zhang <antiagainst@google.com>
Mon, 26 Oct 2020 21:54:46 +0000 (17:54 -0400)
committerLei Zhang <antiagainst@google.com>
Mon, 26 Oct 2020 21:58:00 +0000 (17:58 -0400)
Reviewed By: aartbik

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

mlir/include/mlir/Dialect/Vector/VectorTransforms.h

index a1cf90c..73282ad 100644 (file)
@@ -240,9 +240,9 @@ struct DistributeOps {
 /// Transforms:
 //  %v = addf %a, %b : vector<32xf32>
 /// to:
-/// %v = addf %a, %b : vector<32xf32> %ev =
-/// vector.extract_map %v, %id, 32 : vector<32xf32> into vector<1xf32> %nv =
-/// vector.insert_map %ev, %id, 32 : vector<1xf32> into vector<32xf32>
+/// %v = addf %a, %b : vector<32xf32>
+/// %ev = vector.extract_map %v, %id, 32 : vector<32xf32> into vector<1xf32>
+/// %nv = vector.insert_map %ev, %id, 32 : vector<1xf32> into vector<32xf32>
 Optional<DistributeOps> distributPointwiseVectorOp(OpBuilder &builder,
                                                    Operation *op, Value id,
                                                    int64_t multiplicity);