[mlir][NFC] Style cleanup in comments
authorTres Popp <tpopp@google.com>
Wed, 7 Oct 2020 08:04:45 +0000 (10:04 +0200)
committerTres Popp <tpopp@google.com>
Wed, 7 Oct 2020 08:05:36 +0000 (10:05 +0200)
mlir/include/mlir/Dialect/Shape/Transforms/Passes.td
mlir/lib/Dialect/Shape/Transforms/ShapeTypeConversion.cpp

index 09cc7a1..e3b6a47 100644 (file)
@@ -21,7 +21,7 @@ def ShapeToShapeLowering : FunctionPass<"shape-to-shape-lowering"> {
   let constructor = "mlir::createShapeToShapeLowering()";
 }
 
-// TODO(tpopp): Generalize this to allow any type conversions desired.
+// TODO: Generalize this to allow any type conversions desired.
 def ShapeTensorToMemref : FunctionPass<"shape-tensor-to-memref"> {
   let summary = "Replace tensors involving shape operations with memrefs";
   let constructor = "mlir::createShapeTensorToMemrefPass()";
index 98398fb..2baa117 100644 (file)
@@ -1,5 +1,4 @@
-//=====------- ShapeTypeConversion.cpp - Shape Type Conversions ----------*- C++
-//-*-=====//
+//====----- ShapeTypeConversion.cpp - Shape Type Conversions ----*- C++-*--===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
@@ -82,7 +81,7 @@ struct ShapeTensorToMemrefPass
 
 /// Populates `patterns` with the conversion patterns of tensor->memref.
 //
-// TODO(tpopp): Change this to work generally with any type conversions.
+// TODO: Change this to work generally with any type conversions.
 void mlir::populateShapeTypeConversionPatterns(
     MLIRContext *context, BufferAssignmentTypeConverter *converter,
     OwningRewritePatternList *patterns) {